Java uses regular expressions to determine whether the incoming data is a number
可以利用正则表达式来“-?[0-9]+(\\.[0-9]+)?
”来做判断字符串是否为数字。
如果传入的数据有很多位,那么使用double会导致精度丢失,这个时候就要用BigDecimal来进行转换。
实例:
public class CheckStrIsNum { public static void main(String[] args) { double aa = -192322.1212; String a = "-192322.1212"; String b = "-192322a1212"; String c = "Java"; String d = "5"; /** 判断是否全为数字 */ System.out.println(checkStrIsNum02(Double.toString(aa))); System.out.println(checkStrIsNum02(a)); System.out.println(checkStrIsNum02(b)); System.out.println(checkStrIsNum02(c)); System.out.println(checkStrIsNum02(d)); } private static Pattern NUMBER_PATTERN = Pattern.compile("-?[0-9]+(\\.[0-9]+)?"); /** * 利用正则表达式来判断字符串是否为数字 */ public static boolean checkStrIsNum02(String str) { String bigStr; try { /** 先将str转成BigDecimal,然后在转成String */ bigStr = new BigDecimal(str).toString(); } catch (Exception e) { /** 如果转换数字失败,说明该str并非全部为数字 */ return false; } Matcher isNum = NUMBER_PATTERN.matcher(str); if (!isNum.matches()) { return false; } return true; } }
推荐教程:java开发入门
The above is the detailed content of Java uses regular expressions to determine whether the incoming data is a number. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

SublimeText3 Chinese version
Chinese version, very easy to use

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Linux new version
SublimeText3 Linux latest version

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.
