IS_ALPHA_SPACE
Description
Returns TRUE if the string contains only alphabetic characters or spaces; otherwise, returns FALSE.
Syntax
IS_ALPHA_SPACE(string) -> Boolean
Parameters
| Parameter | Data Type | Required | Description |
|---|---|---|---|
| string | String | Yes | The string to evaluate. |
Examples
IS_ALPHA_SPACE("New York")
-- Returns TRUE.IS_ALPHA_SPACE("Team #01 Alpha")
-- Returns FALSE, only letters and spaces are accepted.Tips
Returns TRUE if the string is empty.
Any numbers or symbols will result in FALSE.