Choose where you’d like to start

removeAllAlphaNumeric()

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> );
ParameterDescriptionData 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 " !"

Get Started Now

Execute