[C , C++] isdigit() 함수 사용방법 : 예제코드로 알아보는 리턴값 의미, 문자인지 숫자인지 판단해주는 함수 java로 변환방법
isdigit() 리턴값 풀이
C 언어에서 isdigit()은 인자로 전달된 문자가
숫자인경우 0이 아닌 값을 리턴하고
숫자가 아니라면 0을 리턴한다.
그럼으로 문자열비교함수와 반대로 리턴하기 때문에 주의가 필요하다.
업무적으로는 주민번호나 사업자등록번호 혹은 전화번호등을 체크할때 주로 사용된다.
isdigit() 예제코드
아래 예제코드는 배열에 담은 값을 테스트하는 코드이다.
include <iostream>
using namespace std;
int main()
{
char str[] = “Gw07”;
cout << “isdigit(‘str[0]’) : ” << isdigit(str[0]) << “\n”;
cout << “isdigit(‘str[1]’) : ” << isdigit(str[1]) << “\n”;
cout << “isdigit(‘str[2]’) : ” << isdigit(str[2]) << “\n”;
cout << “isdigit(‘str[3]’) : ” << isdigit(str[3]) << “\n”;
}
실행결과
isdigit(‘str[0]’) : 0
isdigit(‘str[1]’) : 0
isdigit(‘str[2]’) : 4
isdigit(‘str[3]’) : 4
다음 예제는 문자열이 숫자인지 판별하는 예제이다. 문자열이 정수 형태의 숫자인지 판별할 수 있다.
char str[] = “007”;
bool isNum = true;
for(int i = 0; i < strlen(str); i++) {
if (isdigit(str[i]) == 0) {
isNum = false;
}
}
if (isNum) {
cout << str << ” is number”;
}
else {
cout << str << ” is not number”;
}
실행결과
007 is number
Java 언어에서 isDigit()함수
java.lang 패키지에 있는 Character 클래스의 isDigit()메소드를 이용하여 숫자여부를 체크할 수 있다.
public boolean isDigit() {
String t =”1234567890″;
for (int i=0; i < t.length(); ++i) {
if(! Character.isDigit(t.charAt(i))) {
return false;
}
}
return true;
}
[References]
programiz – isdigit()