getAlpha()
Table of Contents
Overview
The getAlpha() function takes a string as an argument, and returns all the letters from that string.
All other characters (including spaces) are ignored.
Return Type
- Text
Syntax
<variable> = <string>.getAlpha();
(OR)
<variable> = getAlpha(<string>);
Parameter | Description | Data type |
---|---|---|
<variable> | Variable which will contain the returned letters. | TEXT |
<string> | The string from which the letters will be returned. | TEXT |
Examples
Subject = "Your joining date is January 25th, 2019" ;
letters = getAlpha(Subject); //returns YourjoiningdateisJanuaryth
letters = getAlpha(Subject); //returns YourjoiningdateisJanuaryth