> Java > Java베이스 > 본문

Java에서 문자열이 정수인지 확인하는 방법

풀어 주다: 2019-11-22 13:41:00
원래의
5356명이 탐색했습니다.

Java에서 문자열이 정수인지 확인하는 방법

1. 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;
 }
로그인 후 복사

2. 우선 정규식을 사용하세요. , java.util.regex.Pattern 및 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; 
}
로그인 후 복사

3을 가져옵니다. 위의 세 가지 방법 중 org.apache.commons.lang

org.apache.commons.lang.StringUtils;
boolean isNunicodeDigits=StringUtils.isNumeric("aaa123456789");
下面的解释:
isNumeric
public static boolean isNumeric(String str)Checks if the String contains only unicode digits. A decimal point is not a unicode digit and returns false.
null will return false. An empty String ("") will return true.
 StringUtils.isNumeric(null)   = false
 StringUtils.isNumeric("")     = true
 StringUtils.isNumeric("  ")   = false
 StringUtils.isNumeric("123")  = true
 StringUtils.isNumeric("12 3") = false
 StringUtils.isNumeric("ab2c") = false
 StringUtils.isNumeric("12-3") = false
 StringUtils.isNumeric("12.3") = false
 
Parameters:
str - the String to check, may be null 
Returns:
true if only contains digits, and is non-null
로그인 후 복사

을 사용하세요. , 두 가지 방법이 더 유연합니다.

첫 번째와 세 번째 방법은 음수 기호 "-"가 없는 숫자만 확인할 수 있습니다. 즉, 음수 -199를 입력하면 출력 결과가 false가 됩니다.

#🎜 🎜# 그리고 두 번째 방법은 정규식을 수정하여 음수를 확인하는 것입니다. 정규식을 "^-?[0-9]+"로 변경하고 "-?[0-9]+.?[ 0 -9]+"는 모든 숫자와 일치합니다.

자바 지식을 더 보려면

java기본 튜토리얼

을 따르세요.

위 내용은 Java에서 문자열이 정수인지 확인하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿
회사 소개 부인 성명 Sitemap
PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!