Skip to main content

Convert-to-Upercase-String

Command Description

Convert to Upercase String

Command Prototype

sRet = UCase(sText)

Parameter Description

ParameterRequiredTypeDefaultDescription
sTextTruestring""The string to be operated

return

sRet,The variable used to save the output of the command.

Demo

TracePrint("---------------------- Convert string to uppercase ------------------- -----") 
//-------------------------------------------------------------------------------
//[Remarks] Convert the string to uppercase.
//Input parameter 1:
// sText--A string to operate on.
//out parameters:
// sRet--The variable to which the output of the function call is saved.
//
//Command prototype: sRet=UCase(sText)
//-------------------------------------------------------------------------------
sRet = UCase ("uibot")
TracePrint (sRet)