Lcase

Summary

The Lcase function returns a string with all uppercase characters converted to lowercase.

Syntax

Lcase(<string_exp>)

Return Type

String

Details

 

Examples

{fn Lcase('AbCdEfG')}
'abcdefg'
{fn lcase('AbCdEfG')}
'abcdefg'
Lcase('AbCdEfG')
'abcdefg'

Related Functions