java判断字符串是否是double
public static boolean isNumeric(String str){
Pattern pattern = Pattern.compile("[0-9]+[.]{0,1}[0-9]*[dD]{0,1}");
Matcher isNum = pattern.matcher(str);
if( !isNum.matches() ){
return false;
}
return true;
}
matches() 方法用于检测字符串是否匹配给定的正则表达式。
正则表达式是处理字符串的强大的工具,它不是Java的特性,前端的JavaScript等也有。但是相比于其他老牌的高级语言,如C/C++,这是Java比他们独特的地方。
正则表达式用途:
字符串匹配
字符串查找
字符串替换
更多java知识请关注java基础教程。