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)); }
2.1m questions
2.1m answers
60 comments
57.0k users