Table of Contents

StrIsASCII

bool StrIsASCII(str s)

Description

Returns true if all characters in the string are ASCII characters.

Use isascii to check an individual character.

Examples

StrIsASCII("Francais") -> true
StrIsASCII("Français") -> false