Description
Analyse if a char is Ascii. Returns true if thisChar contains an Ascii character.
Syntax
`isAscii(thisChar)`
Parameters
thisChar
: variable. Allowed data types: char
Returns
true
: if thisChar is Ascii.
Analyse if a char is Ascii. Returns true if thisChar contains an Ascii character.
`isAscii(thisChar)`
thisChar
: variable. Allowed data types: char
true
: if thisChar is Ascii.
if (isAscii(this)) // tests if this is an Ascii character
{
Serial.println("The character is Ascii");
}
else
{
Serial.println("The character is not Ascii");
}
LANGUAGE char
LANGUAGE if (conditional operators)
LANGUAGE while (conditional operators)
LANGUAGE read()