-
Returns a matcher that matches any character matched by both this matcher and other.
Returns a char matcher that matches any character present in the given character
sequence.
Determines whether a character is ASCII, meaning that its code point is less than 128.
CharMatcher.is(char match)
Returns a char matcher that matches only one specified character.
CharMatcher.isNot(char match)
Returns a char matcher that matches any character except the one
specified.
Returns a matcher that matches any character not matched by this matcher.
Returns a char matcher that matches any character not present in the given character
sequence.
Returns a matcher that matches any character matched by either this matcher or other.
Returns a matcher that matches any character matched by both this matcher and other.
char
Get the one character at the current position and matches it with the
specified matcher, then update the position to the next character.
Get the token represented by the specified matcher and advance the
position the to next character.
Get the token represented by the specified matcher and advance the
position the to next character if matched.
Verify that the given token matches the specified matcher and return
a lower case only token string.
Returns a matcher that matches any character matched by either this matcher or other.