UCASE Function

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

convertedText = UCASE( text )

The function has the following parameters:

ParameterDescription
textA string of data.

Upper case text.

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.

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

 
 
 
 
  • guides/programming/programmers_reference_manual/ucase.txt
  • Last modified: 2024/06/19 20:20
  • by 127.0.0.1