ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   counting occurances of a char. within a text string/cell (https://www.excelbanter.com/excel-programming/273379-counting-occurances-char-within-text-string-cell.html)

Justin Ater

counting occurances of a char. within a text string/cell
 
Can anyone recommend a easy method for programmatically determining the
number of times a character occurs within a single cell (e.g., the character
"*" occurs 5 times in text "A*B*C*D*E*F"). Thanks,

Justin



Bill Lunney

counting occurances of a char. within a text string/cell
 
From a previous post...


Public Function GetCharCount(vString As String, CheckChar As String) as
Integer
Count=0
For n=1 to len(vstring)
If mid(vstring,n,1)=CheckChar then Count = Count + 1
Next
GetCharCount=Count
End Function


--
Regards,


Bill Lunney
www.billlunney.com

"Justin Ater" wrote in message
...
Can anyone recommend a easy method for programmatically determining the
number of times a character occurs within a single cell (e.g., the

character
"*" occurs 5 times in text "A*B*C*D*E*F"). Thanks,

Justin





Chip Pearson

counting occurances of a char. within a text string/cell
 
Justin,

Try something like

NumChars = Len(S) - Len(Replace(S, "*", ""))

where S is your string.


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com


"Justin Ater" wrote in message
...
Can anyone recommend a easy method for programmatically

determining the
number of times a character occurs within a single cell (e.g.,

the character
"*" occurs 5 times in text "A*B*C*D*E*F"). Thanks,

Justin






All times are GMT +1. The time now is 02:10 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com