is_alpha
Checks if a string contains only alphabetic characters.
is_alpha(x:string) -> bool
Description
Section titled “Description”The is_alpha
function returns true
if x
contains only alphabetic
characters and false
otherwise.
Examples
Section titled “Examples”Check if a string is alphabetic
Section titled “Check if a string is alphabetic”from {x: "hello".is_alpha()}
{x: true}