简体   繁体   中英

How can I find all matches to a regular expression in android

How can I find all matches to a regular expression in android. I founds it for Perl, Python etc but not for android.

Here's an example:

import java.util.regex.Matcher;
import java.util.regex.Pattern;
...
// Find all the words of "foo bar".
Matcher m = Pattern.compile("\\w+").matcher("foo bar");
while (m.find()) {
    System.out.println("Found: " + m.group(0));
}

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