removeAllAlphaNumeric()
Table of Contents
Overview
The removeAllAlphaNumeric() function takes a string as an argument. It removes the alphanumeric characters from the string and returns all the other characters (including spaces).
If there are only alphanumeric characters in the string, this function will return an empty string.
Return Type
- Text
Syntax
<variable> = <string>.removeAllAlphaNumeric();
(OR)
<variable> = removeAllAlphaNumeric( <string> );
Parameter | Description | Data type |
---|---|---|
<variable> | Variable which will contain the returned string. | TEXT |
<string> | The string from which all the characters except alphanumeric will be returned. | TEXT |
Examples
Product = "Zoho Creator 5 is here!";
newText = Product.removeAllAlphaNumeric(); // returns " !"