M
Marty2of5
I need to determine the number of times a given character exists in a given text string. For example, how many spaces are in a formal name? I can use InStr() and then use InStr() again, using the results of the first search plus one as the start position for the nest search. I would need to keep doing this until the result is zero
But I'm hoping there is already a function out there I can use that can tell me CountInStr("Ella Fitzgerald", "l") = 3. Is there anything like that?
But I'm hoping there is already a function out there I can use that can tell me CountInStr("Ella Fitzgerald", "l") = 3. Is there anything like that?