All Packages Class Hierarchy
Regex r = r.Regex("a*b"); r.matchAt("a'b'ab",0); // r.charsMatched() now contains 3 r.dontMatchInQuotes = true; r.matchAt("a'b'ab",0); // r.charsMatched() now contains 6
Regex r = r.Regex("[a-c]"); r.matchAt("B",0); // fails r.ignoreCase = true; r.matchAt("B",0); // succeeds
ch.
stthat matches a non-escaped character.
start