- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for isLetterOrDigit (0.06 sec)
-
src/main/java/org/codelibs/core/convert/DateConversionUtil.java
final StringBuilder buf = new StringBuilder(pattern.length()); for (int i = 0; i < pattern.length(); ++i) { final char ch = pattern.charAt(i); if (Character.isLetterOrDigit(ch) || Character.isWhitespace(ch)) { buf.append(ch); } } if (buf.indexOf("yy") == -1) { final int pos = buf.indexOf("y"); if (pos != -1) {
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 21.5K bytes - Viewed (0) -
guava/src/com/google/common/base/CharMatcher.java
@Deprecated public static CharMatcher javaLetter() { return JavaLetter.INSTANCE; } /** * Determines whether a character is a BMP letter or digit according to {@linkplain * Character#isLetterOrDigit(char) Java's definition}. * * @deprecated Most letters and digits are supplementary characters; see the class documentation. * @since 19.0 (since 1.0 as constant {@code JAVA_LETTER_OR_DIGIT}). */
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 17 13:00:28 UTC 2024 - 53.9K bytes - Viewed (0)