- 1. Overview
- 2. Process Functions
- 3. Task Functions
- 4. Dynaform and Field Functions
- 5. Case Functions
- 6. Case Routing Functions
- 7. Case Notes Functions
- 8. User Functions
- 9. Group Functions
- 10. Email Functions
- 11. Document Functions
- 12. Unique ID Functions
- 13. Date Functions
- 14. String Functions
- 15. Database Functions
- 16. Grid Functions
String Functions
capitalize()
capitalize()
converts the first letter in each word into an uppercase letter. Subsequent letters in each word are changed into lowercase letters.
Parameters:
- string textToConvert: The string to capitalize.
Return value:
- string: Returns the introduced text with the first letter capitalized in each word and the subsequent letters in lowercase letters.
Example:
@@phrase2 = capitalize("hElLo wOrLd");
Both @@phrase1
and @@phrase2
will be set to "Hello World"
.
lowerCase()
lowerCase()
returns a string with all the letters converted into lower case letters.
Parameters:
string textToConvert
: A string to convert to lower case letters.
Return value:
- The function returns a string with the text converted into lower case letters.
Example:
@@phrase2 = lowerCase('HeLlO WoRlD');
Both @@phrase1
and @@phrase2
will be set to "hello world"
.
upperCase()
upperCase()
returns a string converted into all UPPERCASE letters.
Parameters:
- string textToConvert: A string to convert to UPPERCASE letters.
Return value:
A string converted into UPPERCASE letters.
Example:
@@phrase2 = upperCase('helLO WORld');
Both @@phrase1
and @@phrase2
will be set to "HELLO WORLD"
.