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)); }
1.4m articles
1.4m replys
5 comments
57.0k users