isascii()

Learn how to use the isascii() to check if the argument is a valid ascii string.

Returns true if the argument is a valid ASCII string.

Syntax

isascii(value)

Parameters

NameTypeRequiredDescription
valuestring✔️The value to check if a valid ASCII string.

Returns

A boolean value indicating whether value is a valid ASCII string.

Example

print result=isascii("some string")

Output

result
true