Home > Java > Java Basics > body text

How to determine whether a string is an int in java

王林
Release: 2019-11-28 09:59:12
Original
5244 people have browsed it

How to determine whether a string is an int in java

1. Use the functions that come with JAVA

public static boolean isNumeric(String str){
  for (int i = 0; i < str.length(); i++){
   System.out.println(str.charAt(i));
   if (!Character.isDigit(str.charAt(i))){
    return false;
   }
  }
  return true;
 }
Copy after login

Recommended related video tutorials: java teaching video

2. Use regular expressions

First, import java.util.regex.Pattern and java.util.regex. Matcher

public boolean isNumeric(String str){ 
   Pattern pattern = Pattern.compile("[0-9]*"); 
   Matcher isNum = pattern.matcher(str);
   if( !isNum.matches() ){
       return false; 
   } 
   return true; 
}
Copy after login

The first method can only verify numbers without the negative sign "-", that is, if you enter a negative number -199, the output result will be false; while the second method can be modified Regular expressions can be used to check negative numbers. Just change the regular expression to "^-?[0-9]" and change it to "-?[0-9].?[0-9]" to match all numbers. .

If you want to learn more related tutorials, you can visit: java introductory programming

The above is the detailed content of How to determine whether a string is an int in java. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!