StrLower
Use this function to convert text in a symbol or character string to lowercase letters.
You can use the StrLower function to convert all uppercase letters in symbols to lowercase.
where:
- String is a character string, enclosed in double quotation marks.
Copy
Code example
CREATE VARIABLE StrTemp1 AS STRINGVariable = STRLOWER ("SourceString")
//StrTemp1 will equal "stringtest" (without the double quotation marks)