설명
문자가 스페이스인지 분석합니다. thisChar가 스페이스면 true를 반환합니다.
문법
isSpace(thisChar)
매개변수
thisChar
: 변수. 허용되는 자료형: char
반환
true
: thisChar가 스페이스면.
문자가 스페이스인지 분석합니다. thisChar가 스페이스면 true를 반환합니다.
isSpace(thisChar)
thisChar
: 변수. 허용되는 자료형: char
true
: thisChar가 스페이스면.
if (isSpace(myChar)) { // tests if myChar is the space character
Serial.println("The character is a space");
}
else {
Serial.println("The character is not a space");
}
LANGUAGE char
LANGUAGE if (conditional operators)
LANGUAGE while (conditional operators)
LANGUAGE read()