StringTokenizer - read a token twice
Hello,
Is there a way to read a token using StringTokenizer (or another tokenizer class...), without automatically advancing to the next one? Or to put the token back? That is, read a token 2 times. I could use an self managed array contanining all tokens, but i wonder if there is a cleaner method.
Thank you!

