Javaで文字列の数字をチェックする最良の方法は何ですか?
try {
NumberFormat defForm = NumberFormat.getInstance();
Number n = defForm.parse(s);
double d = n.doubleValue();
}
catch (Exception ex) {
// Do something here...
}
または、REGEXを使用するより良い方法はありますか?
数字を剥ぎ取りたくない。