简体   繁体   中英

How to parse a string in Java? Is there anything similar to Python's re.finditer()?

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 can't figure out the best way to do this in Java.

I have tried regexp using Pattern and Matcher, then StringTokenizer, but still without success.

This is what I want to do, shown 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

You could use regex API in Java and achieve the same functionality:

Pattern myPattern = Pattern.compile("([A-Z])(\d+)")
Matcher myMatcher = myPattern.matcher("A12R5F28");
while (myMatcher.find()) {
      // Do your stuff here
}

Expanding on Ravi's Answer....

Pattern myPattern = Pattern.compile("([A-Z])(\\d+)");
Matcher myMatcher = myPattern.matcher("A12R5F28");
while (myMatcher.find()) {
  System.out.println(myMatcher.group(1) + "\n" + myMatcher.group(2));
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM