Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

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.

See also

UCASE functionConvert statementOConv (MCx) function

Example

Code Block
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."