如何用正则表达式判断一个变量是否为double类型?
将变量值转换为字符串,然后判断字符串是否符合下面的正则[0-9]*(\.[0-9]*|[eE][+-][0-9]*)$
1、用正则表达式判断变量为double类型,程序代码java">public static booleisDouble(String str) {Pattern pattern = Pattern.compile("^[-//+]?//d+(//.//d*)?|//.//d+$");return pattern.matcher(str).matches();
2、如果不用正则表达式,下面的函数也可以判断变量是否为double类java">public static boolean isDouble(String str){try{
Double.parseDouble(str);
return true;catch(NumberFormatException ex){return false天云一号 2016-10-20
3、用正则表达式判断变量为double类型,程序static boolean isDouble(String str) {
Pattern pattern = Pattern.compile("^[-//+]?//d+(//.//d*)?|//.//d+$");
return pattern.matcher(str).matches();
如果不用正则表达式,下面的函数也可以判断变量是否为double类型
static boolean isDouble(String str){
try{
Double.parseDouble(str);
return true;
catch(NumberFormatException ex){
return false;