使⽤StringUtils.isNumeric(Stringstr)判断string是否为数字< P>检查字符串是否只包含Unicode数字。
*⼩数点不是Unicode数字,返回fal。</P>东北大学校训
<p> <;代码> null <;代码>将返回 fal 。
*空字符串(“”)将返回 true </p>那一刻我长大了作文600字
⽅法实现: StringUtils.class
小米粥会发胖吗* <pre>
* StringUtils.isNumeric(null) = fal
* StringUtils.isNumeric("") = true
* StringUtils.isNumeric(" ") = fal
* StringUtils.isNumeric("123") = true
经典骂人顺口溜
* StringUtils.isNumeric("12 3") = fal
学按摩
* StringUtils.isNumeric("ab2c") = fal
* StringUtils.isNumeric("12-3") = fal
* StringUtils.isNumeric("12.3") = fal
积极向上的群名* </pre>
*@ PARAM str是要检查的字符串,可能为空
*@ 如果只包含数字,并且为⾮空 , 返回<code>true</code>
需要注意的是如果 str = "" (⼊参为空字符串的情况下) 返回的是true .(根据需求检查⼊参str = "" 的情况)
public static boolean isNumeric(String str) {
车险有哪些if (str == null) {
return fal;
}
int sz = str.length();开学黑板报主题
for (int i = 0; i < sz; i++) {
if (Character.isDigit(str.charAt(i)) == fal) {
return fal;
}
}
return true;
}