isAlpha()

Descrição

Analisa se um caractere é alfabético (isto é, se é uma letra). Retorna true (verdadeiro) se thisChar contém uma letra.

Sintaxe

isAlpha(thisChar)

Parâmetros

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

Retorna

true: se thisChar é um caractere alfabético.

Código de Exemplo

char myChar; void setup() { Serial.begin(9600); myChar = ' '; Serial.print(myChar); Serial.print(": "); if (isAlpha(myChar)) // tests if myChar is a letter Serial.println("The character is a letter"); else Serial.println("The character is not a letter"); myChar = 'A'; Serial.print(myChar); Serial.print(": "); if (isAlpha(myChar)) // tests if myChar is a letter Serial.println("The character is a letter"); else Serial.println("The character is not a letter"); } void loop() {}

The result in Serial Monitor:

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

Ver Também

Linguagem : char

Linguagem : if (operadores condicionais)

Linguagem : while (operadores condicionais)

Linguagem : read()

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