What i mean is what string values are accepted as delimiters? this is because i keep trying to use a string composed of several different characters but the program just seems to ignore it as just scan with empty space as the default delimiter...
For example if the tokenized string is as follows: Phone Number = 790-3233
I would like the 1st token to be up to the " = " thus i set it as the delimiter and the next token should just be the string "790-3233"
Thanks in advance...