Returns a char matcher that matches any character not present in the given character sequence.
(CharSequence sequence)
| 459 | |
| 460 | |
| 461 | public static CharMatcher noneOf(CharSequence sequence) { |
| 462 | return anyOf(sequence).negate(); |
| 463 | } |
| 464 | |
| 465 | /** |
| 466 | * Returns a {@code char} matcher that matches any character in a given range (both endpoints are |
no test coverage detected