The decision of the Java regular expression shaping floating-point type

Source: Internet
Author: User

Floating-point judgment
public static Boolean isdecimal (String str) {
if (Str==null | | "". Equals (str))
return false;
Java.util.regex.Pattern Pattern = Pattern.compile ("[0-9]* (\ \.?) [0-9]* ");
return Pattern.matcher (str). matches ();
}

Integral type judgment
public static boolean isinteger (String str) {
if (str==null)
return false;
Pattern pattern = Pattern.compile ("[0-9]+");
return Pattern.matcher (str). matches ();
}

Floating-point test cases:
public void Testisdecimal () {

Asserttrue ("123", Test.isdecimal ("1"));
Asserttrue ("12.3", Test.isdecimal ("12.3"));
Asserttrue (". 123", Test.isdecimal (". 123"));
Asserttrue ("123.", Test.isdecimal ("123."));

Assertfalse ("", Test.isdecimal (""));
Assertfalse ("null", Test.isdecimal (null));
Assertfalse ("abc", Test.isdecimal ("abc"));
Assertfalse ("123abc", Test.isdecimal ("123abc"));
Assertfalse ("abc123", Test.isdecimal ("abc123"));
Assertfalse ("123.2.2", Test.isdecimal ("123.2.2"));

}

The decision of the Java regular expression shaping floating-point type

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.