Hi,
I have an input string with a very simple pattern - capital letter, integer, capital letter, integer, ... and I would like to separate each capital letter and each integer. I have been dealing with it for quite a while and can't figure out what is the best way to do that in Java, I have already tried regexp using Pattern and Matcher, then StringTokenizer, but still no success.
This is what I want to do, showed in Python:
for token in re.finditer( "([A-Z])(\d*)", inputString):
print token.group(1)
print token.group(2)
For input "A12R5F28" the result would be:
A
12
R
5
F
28
Thank you very much. Tomas