使用StringUtils.isNumeric(Stringstr)判断string是否为数字

更新时间:2023-07-10 02:31:00 阅读: 评论:0

使⽤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;
}

本文发布于:2023-07-10 02:31:00,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/fan/89/1075150.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

标签:数字   字符串   检查   是否
相关文章
留言与评论(共有 0 条评论)
   
验证码:
推荐文章
排行榜
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图