Show pageOld revisionsBacklinksBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== LCASE Function ====== ==== Description ==== Converts the input parameter's contents from upper/mixed case to lower case. ==== Syntax ==== convertedText = LCASE( text ) ==== Parameters ==== The function has the following parameters: ^Parameter^Description^ |text|A string of data.|| ==== Returns ==== Lower case text. ==== Remarks ==== 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|UCASE function]], [[convert|Convert statement]], [[oconv_masked_character_mcx|OConv (MCx) function]] ==== Example ==== <code> 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." </code> guides/programming/programmers_reference_manual/lcase.txt Last modified: 2024/06/19 20:20by 127.0.0.1