isWhitespace()

Descrição

Analisa se um caractere é um espaço em branco, isto é o próprio caractere de espaço (' '), formfeed ('\f'), nova linha ('\n'), retorno ('\r'), tab horizontal tab ('\t') e tab vertical ('\v')).

Retorna true se thisChar contém um espaço em branco.

Sintaxe

isWhitespace(thisChar)

Parâmetros

  • thisChar: variável. Tipos de dados permitidos: char

Retorna

true: se thisChar é um caractere de espaço em branco.

Código de Exemplo

char myChar; void setup() { Serial.begin(9600); myChar = ' '; Serial.print(myChar); Serial.print(": "); if (isWhitespace(myChar)) // testa se meuChar é um caractere de espaço em branco Serial.println("The character is a space or tab"); else Serial.println("The character is not a space or tab"); myChar = '\t'; Serial.print(myChar); Serial.print(": "); if (isWhitespace(myChar)) // testa se meuChar é um caractere de espaço em branco Serial.println("The character is a space or tab"); else Serial.println("The character is not a space or tab"); myChar = 'A'; Serial.print(myChar); Serial.print(": "); if (isWhitespace(myChar)) // testa se meuChar é um caractere de espaço em branco Serial.println("The character is a space or tab"); else Serial.println("The character is not a space or tab"); } void loop() {}

The result in Serial Monitor:

COM6
Send
: The character is a space or tab : The character is a space or tab A: The character is not a space or tab
Autoscroll Show timestamp
Clear output
9600 baud  
Newline  

Ver Também

ARDUINO BUY RECOMMENDATION

Arduino UNO R3
Arduino Starter Kit
Please note: These are Amazon affiliate links. If you buy the components through these links, We will get a commission at no extra cost to you. We appreciate it.

※ OUR MESSAGES