How can I find all substrings that match a regex in Java? (Similar to Regex.Matches in .Net)
Create a Matcher and use find() to position it on the next match.
find()