The source code is for testing only and should not be used commercially. The source code comes from the Internet. If there is any infringement, please contact me to remove it.
如何在java中判断一个字符串是否是数字

preface

Numbers are often represented and conveyed in strings in some fields. So how do we determine whether a string is a number? Today we will discuss this topic.

Empty characters and null

First of all, we can clearly know the empty characters""andnull Definitely not numbers. In fact, we write other logic the same. Give priority to some of the most extreme and easily identifiable logical judgments. This is a small tip.

toCharArray

Strings that exclude previous situations can be passed throughtoCharArray() Method to convert to a char array. andCharacter.isDigit(int) It's easy to determine whether the char element is a number (don't ask why char is an int!). So will this method work? Let's operate a wave of various situations:

public class Main {
    public static void main(String[] args) {
        // false
        System.out.println("\"\"  是不是数字: "+isNumeric(""));
        // false
        System.out.println("\" \"  是不是数字: "+isNumeric(" "));
        // false
        System.out.println("null  是不是数字: "+isNumeric(null));
        // false
        System.out.println("1,200  是不是数字: "+isNumeric("1,200"));
        // true
        System.out.println("1  是不是数字: "+isNumeric("1"));
        // 预期是负数  却为 false
        System.out.println("-1  是不是数字: "+isNumeric("-1"));
        // true
        System.out.println("200  是不是数字: "+isNumeric("200"));
        // 预期是保留两位的浮点数  却为false
        System.out.println("3000.00  是不是数字: "+isNumeric("3000.00"));
        // 二进制
        System.out.println("0b11001  是不是数字: "+isNumeric("0b11001"));
        // 八进制  true
        System.out.println("012  是不是数字: "+isNumeric("012"));
        // 十六进制 false
        System.out.println("0x12  是不是数字: "+isNumeric("0x12"));
        //  A-F 代表十六进制中的 10-15   false
        System.out.println("0xAF  是不是数字: "+isNumeric("0xAF"));
        // double false
        System.out.println("12.12d  是不是数字: "+isNumeric("12.12d"));
        // double 科学计数法   false
        System.out.println("12E4  是不是数字: "+isNumeric("12E4"));
        // float  false
        System.out.println("12.123f  是不是数字: "+isNumeric("12.123f"));
        // 分隔符   jdk1.7      false
        System.out.println("1_000_000  是不是数字: "+isNumeric("1_000_000"));

    }


    public static boolean isNumeric(final String str) {
        // null or empty
        if (str == null || str.length() == 0) {
            return false;
        }
        return str.chars().allMatch(Character::isDigit);
    }
}

As can be seen from the above, there are not many problems with decimal positive integers that are moderate to moderate. Once it is floating point numbers, decimal numbers, negative numbers, binary, hexadecimal, scientific notation, and separators, this method becomes less easy to use. It suddenly occurred to me that there were some methods available in packaging.

parse

Numbers have corresponding packaging categoriesparsemethod. Throw if the string does not meet the rules for the corresponding number typeNumberFormatException abnormal. So let's change our judgment here:

   public static boolean isNumeric(final String str) {
        // null or empty
        if (str == null || str.length() == 0) {
            return false;
        }

        try {
            Integer.parseInt(str);
            return true;
        } catch (NumberFormatException e) {
            try {
                Double.parseDouble(str);
                return true;
            } catch (NumberFormatException ex) {
                try {
                    Float.parseFloat(str);
                    return true;
                } catch (NumberFormatException exx) {
                    return false;
                }
            }
        }
    }

Implement it again, and the following results are obtained:

""  Is it a number: false
" "  Is it a number: false
null  Is it a number: false
1,200  Is it a number: false
1  Is it a number: true
-1  Is it a number: true
200  Is it a number: true
3000.00  Is it a number: true
0b11001  Is it a number: false
012  Is it a number: true
0x12  Is it a number: false
0xAF  Is it a number: false
12.12d  Is it a number: true
12E4  Is it a number: true
12.123f  Is it a number: true
1_000_000  Is it a number: false

Starting from the fifth line above, the representation of numbers is supported by java. Judging from the execution results, everything except binary, hexadecimal, and separators met expectations. Although this method is not perfect, we can also learn some rules corresponding to the parse method. That's the point.

third-party class libraries

In other words, the api provided by jdk does not have silver bullets. So is there a third-party library to detect it? We used the common lang3 library (version 3.9)NumberUtilsTool class to process, IisParsableisDigitsisCreatable Methods were tested separately and found thatisCreatable The method works best, onlydelimiterWe did not meet our expectations. If you don't consider this situation, it should beisCreatable Basically enough to meet your needs.

regular expression

In fact, using regular expressions is the most perfect solution to the problem.

summary

Today's verification of whether a string is a number type in java allows us to review how numbers are represented and converted in java. Some rules were discovered. I believe this article will make you have a deeper impression on the numbers in java, and I hope it will be helpful to your work.

read more
Resource download
PriceFree
The use is limited to testing, experiments, and research purposes. It is prohibited for all commercial operations. This team is not responsible for any illegal behavior of users during use. Please self-test all source codes! There is no guarantee of the integrity and validity of your source code. All source code is collected from the entire network
Original link:https://bcbccb.cn/en/3165.html, please indicate the source for reprinting. Disclaimer: This resource has not been authorized by the original rights holder and is not commercially available. It can only be used to learn and analyze the underlying code, CSS, etc., and is prohibited for commercial purposes. Any relevant disputes and legal liabilities arising from unauthorized commercial use shall be fully borne by the user. Everyone is responsible to support genuine copies. Please delete them within 24 hours after downloading. Thank you for your support!
1

Comments0

完整版APP区块链游戏源码,trx投注竞猜游戏,trx下注游戏,前端uinapp
Full version of APP blockchain game source code, trx betting game, trx betting game, front-end uinapp
Someone bought it 1 minute ago Go and have a look

Site Announcements

The source code (theme/plug-in/application source code) and other resources provided by this site are only for learning and exchange

Commercial use is prohibited, otherwise all consequences will be borne by the downloading user!

Some resources are collected or copied online. If they infringe on your legitimate rights and interests, please write to us.

Currently, members have a big reward, and the current price for a lifetime member is 299 gold coins.Recent price adjustments

Join quickly, opportunities wait for no one! immediately participated in

Captcha

Fast login to social accounts

en_USEnglish