码迷,mamicode.com
首页 > 编程语言 > 详细

java判断是否为数字

时间:2020-05-20 14:33:29      阅读:48      评论:0      收藏:0      [点我收藏+]

标签:class   mat   OLE   int   highlight   字符   一个   number   整数   

//采用正则表达式的方式来判断一个字符串是否为数字,这种方式判断面比较全  
        //可以判断正负、整数小数  
        //?:0或1个, *:0或多个, +:1或多个  
        Boolean strResult = str.matches("-?[0-9]+.*[0-9]*");  
          
if(strResult == true) {  
            System.out.println("Is Number!");  
        } else {  
            System.out.println("Is not Number!"); 

  

java判断是否为数字

标签:class   mat   OLE   int   highlight   字符   一个   number   整数   

原文地址:https://www.cnblogs.com/SuKiWX/p/12923171.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!