This page is also available in 3 other languages

isSpace()

[Characters]

설명

문자가 스페이스인지 분석합니다. 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");
}

더보기