isAscii()
Description
Check if a character is Ascii or not. Returns true if the character contains an Ascii character.
Syntax
isAscii(thisChar)
Parameter Values
- thisChar: variable. Allowed data types: char.
Return Values
- true: If thisChar is Ascii.
- false: Otherwise
Example Code
if (isAscii(myChar)) { // tests if myChar is an Ascii character
Serial.println("The character is Ascii");
}
else {
Serial.println("The character is not Ascii");
}
The result in Serial Monitor:
COM6
Autoscroll
Clear output
9600 baud
Newline
See Also
- Language : isAlpha()
- Language : isAlphaNumeric()
- Language : isControl()
- Language : isDigit()
- Language : isGraph()
- Language : isHexadecimalDigit()
- Language : isLowerCase()
- Language : isPrintable()
- Language : isPunct()
- Language : isSpace()
- Language : isUpperCase()
- Language : isWhitespace()
- Language : char
- Language : if (conditional operators)
- Language : while (conditional operators)
- Language : 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.