在Java中检查字符串中数字字符的最佳方法是什么?
try {
NumberFormat defForm = NumberFormat.getInstance();
Number n = defForm.parse(s);
double d = n.doubleValue();
}
catch (Exception ex) {
// Do something here...
}
或者有没有更好的方法使用 REGEX?
我不想去掉数字。