StringTokenizer class in LotusScript

Yet another useful class, that splits strings into substrings, using one or more delimiters. Default delimiters are space, CR, LF, tab and FF. The Enumeration class, that this class subclasses, can be found in the Vector ”article”. You can use it like this: Dim tok As New StringTokenizer(”A very useful text”) Do While tok.hasMoreElements() Print […]