Quote:
Originally posted by mikepg
Nope, tokenize2 always has spaces and commas as default delims. so tokenize2 $,Bob$went to the$market;
would come out
0: Bob
1: went
2: to
3: the
4: market
Tokenize 3 might be useful...but you can easily get around the spaces with quotes....i use them all the time, for things like the on screen radio, it used wraptext, everything was just quoted though. It should work fine.
|
you specify 'delims' as the delimiter, did you not read the command description?
divides str into tokens, using 'delims' as additional `delimiters