I am using Java's Scanner to parse some text. Say I have set as a delimiter a variety of characters [@$]

With next I get the text till that delimiter, but I would like for a way to learn if parsing stopped because it found @ or because it found $.

Is there some way to do that? Or should I break it in two, as in try with the first delimiter, and if you fail try with the second?

link|improve this question

Found it! :) You can use scanner.findWithinHorizon("[\\@]", 2) to see if @ was the delimeter found. – George Kastrinis May 22 '11 at 16:43
What method do you use to define a delimeter has been stumbled upon? – Crash May 22 '11 at 16:43
useDelimiter("[\\@\\$]") and after just next() – George Kastrinis May 22 '11 at 16:48
Answer your own question and accept it. – Amir Afghani May 22 '11 at 16:51
Oh is that ok? :) – George Kastrinis May 22 '11 at 16:52
show 3 more comments
feedback

1 Answer

up vote 1 down vote accepted

Found it! :) You can use

scanner.findWithinHorizon("[\\@]", 2)

to see if @ was the delimeter found.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.