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:
- SymName is the name of a symbol.
- String is a character string, enclosed in double quotation marks.
Copy
Example
CREATE VARIABLE LowCase AS STRING
LowCase = STRLOWER ("A11234")
A11234 will equal "a11234" (without the double quotation marks)