断点

每天进步一点点!
posts - 174, comments - 56, trackbacks - 0, articles - 21

JAVA判断字符串是否为数字

Posted on 2010-01-14 20:49 断点 阅读(13915) 评论(2)  编辑  收藏 所属分类: Java
下面有四种方法,估计好用的应该是第三种吧。
1.用JAVA自带的函数
public static boolean isNumeric(String str){
for (int i = str.length();--i>=0;){
if (!Character.isDigit(str.charAt(i))){
return false;
}
}
return true;
}
2.正则表达式
public static boolean isNumeric(String str){
Pattern pattern = Pattern.compile("[0-9]*");
return pattern.matcher(str).matches();
}
3.还是正则表达式
public static boolean isNumeric(String str){
if(str.matches("\\d*"){
return true;
}else{
return false;
}
}
4.用ascii码
public static boolean isNumeric(String str){
for(int i=str.length();--i>=0;){
int chr=str.charAt(i);
if(chr<48 || chr>57)
return false;
}
return true;
}

posted @ 2009-02-19 10:59 断点 阅读(955) | 评论 (0)

Feedback

# re: JAVA判断字符串是否为数字  回复  更多评论   

2012-08-03 19:50 by sjw
谢谢

# re: JAVA判断字符串是否为数字  回复  更多评论   

2014-09-25 10:38 by 小笨象
THANKS.

只有注册用户登录后才能发表评论。


网站导航: