Welcome to the Java Programming Forums
The professional, friendly Java community. 21,500 members and growing!
The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.
>> REGISTER NOW TO START POSTING
Members have full access to the forums. Advertisements are removed for registered users.
StackOverflow: How to split a string but also keep the delimiters
The accepted answer may be what you're looking for, applied here you just use + instead of ; as the "delimiter".
Thanks. But why doesn't \d+ work?
Edit:
Why
gives me [3, +4, -, (2, *3, ), ^16] and not [3, +, 4, -, (2, *, 3, ), ^, 16]
Why \d+ doesn't work:
You're using a look-ahead match, which implicitly means the actual match group is the "space" between characters, i.e. match.start() = match.end(). Since you're matching at least one digit, the starting edge is always the same. The split algorithm can't tell the difference between the two so you get the same result.
That's a rather long and convoluted regex pattern, I'm not quite sure where to begin with debugging it.
A better solution is to utilize character classes which match all the appropriate operators.
Depending on how complex you're planning to get with your tokenizer, it may be better to use a different technique. Rather than trying to split everything with one regex, try parsing the tokens as the come. This way each regex stays simple, is easy to modify, and is specific to what token you're trying to parse.
thaks.