Syntax
| ItemCount(text$ [,delimiters$])
| ||||||
|---|---|---|---|---|---|---|---|
Description
| Returns an Integer containing the number of items in the specified delimited text.
Items are substrings of a delimited text string. Items, by default, are separated by commas and/or end-of-lines. This can be changed by specifying different delimiters in the delimiters$ parameter. For example, to parse items using a backslash:
n = ItemCount(text$,"\")
| ||||||
See Also
| |||||||
Example
| Sub Main |