 |
Purpose
Returns the number of occurrences of a specified string within a "parent" string.
Syntax
StrCount (ParentString, StringToCount)
ParentString |
The string within which you want to count the occurrences of another string. |
StringToCount |
The string that you are searching for within the parent string. |
Example
Dim S as ParentString
S = "OneTwoThree"
Debug StrCount(S,"e")
|  |