For example:
Pattern pattern = Pattern.compile("a(.*)b");
Matcher matcher = pattern.matcher("a19203b");
matcher.find();
System.out.println(matcher.group());
This prints out the entire string (a19203b). All I need is 19203. How can I get this in Java?
(for example, in a mod_rewrite rule, I would do something like RewriteRule article/(.*) article.php?id=$1 where $1 is the string I need)