IS_ALPHANUMERIC_SPACE
Description
Returns TRUE if the string contains only alphabetic characters, numeric digits, or spaces; otherwise, returns FALSE.
Syntax
IS_ALPHANUMERIC_SPACE(string) -> Boolean
Parameters
| Parameter | Data Type | Required | Description |
|---|---|---|---|
| string | String | Yes | The string to evaluate. |
Examples
IS_ALPHANUMERIC_SPACE("Acme Industries 2025")
-- Returns TRUE.IS_ALPHANUMERIC_SPACE("ACC-12345")
-- Returns FALSE (contains a hyphen).Tips
Returns TRUE if the string is empty.
Any symbol included will cause the expression to return FALSE.