getAlphaNumeric()
Table of Contents
Overview
The getAlphaNumeric() function takes a string as an argument, and returns only the alphanumeric characters from that string.
Special characters and spaces are ignored.
Return Type
- Text
Syntax
<variable> = <string>.getAlphaNumeric();
(OR)
<variable> = getAlphaNumeric(<string>);
Parameter | Description | Data type |
---|---|---|
<variable> | Variable which will contain the returned alphanumeric characters. | TEXT |
<string> | The string from which the alphanumeric characters will be returned. | TEXT |
Examples
Subject = "Your joining date is 25-01-2019" ;
chars = getAlphaNumeric(Subject); //returns Yourjoiningdateis25012019
chars = getAlphaNumeric(Subject); //returns Yourjoiningdateis25012019