
一、使用自带函数isdigit()
语法:
public static boolean isDigit(char ch)
实例:
public static boolean isNumeric (String str) {
for (int i = str.length(); --i >=0) {
if (!Character.isDigit(str.charAt(i))) {
return false;
}
}
return true;}二、使用正则表达式
实例1:
立即学习“Java免费学习笔记(深入)”;
诚客在线考试是由南宁诚客网络科技有限公司开发的一款手机移动端的答题网站软件,它应用广泛适合各种学校、培训班、教育机构、公司企业、事业单位、各种社会团体、银行证券等用于学生学习刷题、员工内部培训,学员考核、员工对公司制度政策的学习……可使用的题型有:单选题、多选题、判断题支持文字,图片,音频,视频、数学公式。可以设置考试时间,答题时间,考试次数,是否需要补考,是否可以看到自己成绩。练习模式,支持学生
0
public static boolean isNumeric(String str) {
Pattern pattern = Pattern.compile("^[-\+]?[\d]*$");
return pattern.matcher(str).matches();}实例2:
public static boolean isNumeric(String str) {
if (str != null && !"".equals(str.trim())) {
return s.matches("^[0-9]*$");
}
return false;}实例3:
public static boolean isNumeric (String str) {
Pattern pattern = Pattern.compile("[0-9]*");
return pattern.matcher(str).matcher();}三、使用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;}推荐教程:java开发入门
以上就是Java中判断字符是否为数字的详细内容,更多请关注php中文网其它相关文章!
java怎么学习?java怎么入门?java在哪学?java怎么学才快?不用担心,这里为大家提供了java速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号