I am using the following code:
String array[] = "aba;b12".split("[4\\,;\\Qab\\E]+");
for(String test : array)
System.out.println(test);
I expect:
a b12
However I get:
<blank line> 12
Edit: I cleaned up the code, sorry.
The whole Idea is to splt the code by 4, semicolon, ab, comma, and treat consecutive delimiter as one.
Edit: Sorry about all the confusion, I know the question was not as clear as it could have been.
Thanks

temp? – jmg Mar 17 '11 at 15:01aandb; why would you expect to find those in the split-off substrings? – Gareth McCaughan Mar 17 '11 at 15:02tempcontains the same thing you've passed tosplitin the line above. Is that right?) – Gareth McCaughan Mar 17 '11 at 15:02