I was wondering if there is any way in Java to tokenize an string by spaces, BUT if there are some words between apostrophes, take it as "one word"...
so for example, if I have:
This "is a great" day
the string tokenizer should have:
"This"
"is a great"
"day"
Thanks!