아두이노 문자가 알파벳,숫자인지 판별하는 함수, isAlphaNumeric()

아두이노에서 문자(char)가 알파벳 혹은 숫자인지 판별하는 함수인 isAlphaNumeric()에 대해 알아보겠습니다.

 

정의

문자가 영숫자 (즉 문자 또는 숫자)인지 분석하십시오. thisChar에 숫자 나 문자가 포함되어 있으면 true를 리턴합니다.

isAlphaNumeric(thisChar)

 

매개 변수

thisChar: 변수. 허용되는 데이터 유형 : char.

 

리턴 값

true: thisChar가 영숫자 인 경우.

 

예제 코드

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
void setup() {
  Serial.begin(9600);
 
  Serial.println(isAlphaNumeric('1'));
  Serial.println(isAlphaNumeric('a'));
  Serial.println(isAlphaNumeric('&'));
  
}
 
void loop() {
 
}
 

 

알파벳이나 숫자면 1(true)를 아니라면 0(false)를 반환 합니다.

댓글()