This page contains the source code of the Java String getDigits() utility method - This method checks if a String contains Unicode digits, if yes then concatenate all the digits in and return it as a String.
Java String getDigits() Utility Method
The following String getDigits() utility method checks if a String contains Unicode digits, if yes then concatenate all the digits in and return it as a String:
/** * <p> * Checks if a String {@code str} contains Unicode digits, if yes then * concatenate all the digits in {@code str} and return it as a String. * </p> * * <p> * An empty ("") String will be returned if no digits found in {@code str}. * </p> * * @param str * the String to extract digits from, may be null * @return String with only digits, or an empty ("") String if no digits * found, or {@code null} String if {@code str} is null * @since 3.6 */ public static String getDigits(final String str) { if (isEmpty(str)) { return str; } final int sz = str.length(); final StringBuilder strDigits = new StringBuilder(sz); for (int i = 0; i < sz; i++) { final char tempChar = str.charAt(i); if (Character.isDigit(tempChar)) { strDigits.append(tempChar); } } return strDigits.toString(); }
The above Utility method is useful to get all digits or numbers from given String in Java.
Related Utility Methods
- Java String getDigits() Utility Method
- Java String isAlphanumeric() Utility Method
- Java String isAlpha() Utility Method
- Java String countMatches() Utility Method
- Java String mergeStringArrays(String array1[], String array2[]) Utility Method Example
- Java String quote( String str) Utility Method
- Java arrayToMap(String[][] array) Utility Method
- Java String fromBufferedReader() Utility Method - Converts a BufferedReader into a String
- Java String isNumericSpace() Utility Method
- Java String isNumeric() Utility Method
- Java String isAlphanumericSpace() Utility Method
- Java String isAlphaSpace(() Utility Method
- Java trimArrayElements() Utility Method
- Java trimArrayElements() Utility Method
- Java String containsWhitespace() Utility Method
- Java String isBlank() Utility Method
- Java String isAnyEmpty() Utility Method
- Java String isNotEmpty() Utility Method
- Java String isEmpty() Utility Method
- Java String Uppercase First Character Example
- Java String uppercaseFirstChar() Utility Method
- Java String trimTrailingCharacter() Utility Method
- Java String trimLeadingCharacter() Utility Method
- Java String trimTrailingWhitespace() Utility Method
- Java String trimLeadingWhitespace() Utility Method
- Java String trimAllWhitespace() Utility Method
- Java String trimWhitespace() Utility Method
Comments
Post a Comment