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