설명
문자가 알파벳인지를 판단합니다. thisChar가 알파벳이라면 참을 반환합니다.
문법
isAlpha(thisChar)
매개변수
thisChar
: 변수. 혀용 자료형: char
반환
true
: thisChar가 알파벳일 때.
문자가 알파벳인지를 판단합니다. thisChar가 알파벳이라면 참을 반환합니다.
isAlpha(thisChar)
thisChar
: 변수. 혀용 자료형: char
true
: thisChar가 알파벳일 때.
if (isAlpha(myChar)) { // myChar가 알파벳인지 테스트
Serial.println("The character is a letter");
}
else {
Serial.println("The character is not a letter");
}
LANGUAGE char
LANGUAGE if (conditional operators)
LANGUAGE while (conditional operators)
LANGUAGE read()