Is there any way to change the case of a string?
22 Likes
you can use BR functions
LOWER() – convert string to lower case
UPPER() – convert string to upper case
6 Likes
Some functions used to change the case
LOWER(“getVal(‘tempObject.path’)”) : Changes the string to lowercase
Example: text
UPPER(“getVal(‘tempObject.path’)”) : Changes the string to uppercase
Example: TEXT
TITLECASE(“getVal(‘tempObject.path’)”) : Changes the string to titlecase
Example: Text
22 Likes