I am trying to use the stringtokenizer on input strings containing the " character, but stringtokenizer seems to treat that as the end of the string.
For instance, "a cat is /"not/" a dog"
should return the tokens a, cat, is, "not", a, dog
but instead it returns a, cat, is
What can I do so the tokenizer does not end on the first instance of the " character?
Thanks for the help
Update: Figured it out (stupid mistake on my part.)