Java利用正则判断字符串是否为正整数或者浮点数
作者:
仲冬初七 | 来源:发表于
2019-11-25 09:18 被阅读0次 /**
* 判断字符串是否为正整数或者浮点数
* 1.11 -> true
* 1 -> true
* -1 -> false
* 1a -> false
* @param str
* @return
*/
public static boolean isNumeric(String str){
// 判断正整数正则
Pattern patternInteger = Pattern.compile("^\\d+(\\.\\d+)?$");
// 判断浮点数正则
Pattern patternFloat = Pattern.compile("^(([0-9]+\\.[0-9]*[1-9][0-9]*)|([0-9]*[1-9][0-9]*\\.[0-9]+)|([0-9]*[1-9][0-9]*))$");
return patternFloat.matcher(str).matches() || patternInteger.matcher(str).matches();
}
本文标题:Java利用正则判断字符串是否为正整数或者浮点数
本文链接:https://www.haomeiwen.com/subject/lckdwctx.html
网友评论