Questions tagged [android-regex]

1 questions
1
vote
0 answers

Exception "No successful match so far" after Matcher.find() == true

Matcher m = patternFoo.matcher(sFoo); if(m.find()){ ... m.start() ... } I wonder how it is possible for the m.start() in the above code to throw the following exception: Exception: No successful match so far Class:…
Hong
  • 17,643
  • 21
  • 81
  • 142