LCASE Function

Converts the input parameter's contents from upper/mixed case to lower case.

convertedText = LCASE( text )

The function has the following parameters:

ParameterDescription
textA string of data.

Lower case text.

The function is a wrapper around a "convert @upper_case to @lower_case in text" statement. It is more efficient to use a "convert" statement than to use the LCASE function.

declare function LCASE

 

text = "All work and no play make Jack a dull boy."

lText = LCASE( text )

 

* After execution, lText will contain "all work and no play make jack a dull boy."
  • guides/programming/programmers_reference_manual/lcase.txt
  • Last modified: 2024/06/19 20:20
  • by 127.0.0.1