标签:eric regex imp 字母 字符 mpi pat 正则表达式 string
1、x = Double.parseDouble(X);字符串转Double类型;
2、使用正则表达式判断输入的是字母还是数字
要import java.util.regex.Pattern 和 java.util.regex.Matcher
public boolean isNumeric(String str){
Pattern pattern = Pattern.compile("[0-9]*");
Matcher isNum = pattern.matcher(str);
if( !isNum.matches() ){
return false;
}
return true;
}
3、
标签:eric regex imp 字母 字符 mpi pat 正则表达式 string
原文地址:http://www.cnblogs.com/ailsalin/p/6336590.html