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. ====== UCASE Function ====== ==== Description ==== Converts the input parameter's contents from lower/mixed case to upper case. ==== Syntax ==== convertedText = UCASE( text ) ==== Parameters ==== The function has the following parameters: ^Parameter^Description^ |text|A string of data.|| ==== Returns ==== Upper case text. ==== Remarks ==== The function is a wrapper around a "convert @lower_case to @upper_case in text" statement. It is more efficient to use a "convert" statement than to use the UCASE function. ==== See Also ==== [[lcase|LCASE function]], [[convert|Convert statement]], [[oconv_masked_character_mcx|OConv (MCx) function]] ==== Example ==== <code> declare function UCASE text = "All work and no play make Jack a dull boy." uText = UCASE( text ) * After execution, uText will contain "ALL WORK AND NO PLAY MAKE JACK A DULL BOY." </code> guides/programming/programmers_reference_manual/ucase.txt Last modified: 2024/06/19 20:20by 127.0.0.1