IsAlpha(
     string:string
)
bool

Arguments

string

String to test.

Return value

True if string consists only of letters.

Description

Returns True if string consists entirely of alphabetical characters, otherwise returns False.

Example:

Output(IsAlpha("abcde"))
--> true

Output(IsAlpha("ab3de"))
--> false

See also:
IsDigit
IsLower
IsPunct
IsSpace
IsUpper