This page is also available in 3 other languages

isAscii()

[Characters]

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.

Example Code

if (isAscii(this))      // tests if this is an Ascii character
{
	Serial.println("The character is Ascii");
}
else
{
	Serial.println("The character is not Ascii");
}

See also