Returns a char matcher that matches any character except the one specified. To negate another CharMatcher, use #negate().
(final char match)
| 428 | |
| 429 | |
| 430 | public static CharMatcher isNot(final char match) { |
| 431 | return new IsNot(match); |
| 432 | } |
| 433 | |
| 434 | /** |
| 435 | * Returns a {@code char} matcher that matches any character present in the given character |