Skip to main content

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.

Syntax:

STRLOWER (SymName|"String")

where:

  • SymName is the name of a symbol.
  • String is a character string, enclosed in double quotation marks.

Syntax example:

LowCase = STRLOWER ("A11234")

Example:

CREATE VARIABLE LowCase AS STRING

LowCase = STRLOWER ("A11234")

A11234 will equal "a11234" (without the double quotation marks)

Was this article helpful?

We're sorry to hear that.