

650-212-5710.
A price value may be entered with (,) characters like;
12,500.00
In Java, java.lang.Character class has a method; isDigit() which can be used to identify whether a character is a digit or not.Following method can be used for extracting a numbers-only string, by removing all non-digits.
public static String getOnlyNumerics(String str) {
if (str == null) {
return null;
}
StringBuffer strBuff = new StringBuffer();
char c;
for (int i = 0; i < str.length() ; i++) {
c = str.charAt(i);
if (Character.isDigit(c)) {
strBuff.append(c);
}
}
return strBuff.toString();
}
0 Response to "Java: Numbers only String by removing non numeric characters"
Post a Comment