...
Character | Replaced with |
---|---|
" (double quote) | " |
' (single quote) | ' |
< | < |
> | > |
& | & |
Tokenize(delim As String) As
...
roList
Splits a string into substrings using the specified delimiter character(s). The delim
parameter can contain one or more characters to treat as delimiters. If the string object contains multiple contiguous delimiters, they will be treated as a single delimiter. This method returns the substrings as an roList object; the delimiters are not returned with the substrings.
...