Determines whether a character is a digit according to Unicode . If you only care to match ASCII digits, you can use inRange('0', '9'). @since 19.0 (since 1.0 as constant DIGIT)
()
| 130 | |
| 131 | |
| 132 | public static CharMatcher digit() { |
| 133 | return Digit.INSTANCE; |
| 134 | } |
| 135 | |
| 136 | /** |
| 137 | * Determines whether a character is a digit according to {@linkplain Character#isDigit(char) |
no outgoing calls
no test coverage detected