public native find() as Boolean throws RegExException
Searches for the next occurrence of the regular expression.
true when another match was found, otherwise false.
matcher = RegEx(r"\d+").matcher("A12 B34")
print(matcher.find()) # true
print(matcher.find()) # true
print(matcher.find()) # false