Converts a string to uppercase.
StringUpper ( "string" )
Parameters
string | The string to convert. |
Return Value
Returns the string converted to uppercase.
Remarks
None.
Related
StringIsLower, StringIsUpper, String, StringInStr, StringLeft, StringLen, StringLower, StringMid, StringRight, StringTrimLeft, StringTrimRight
Example
$result = StringUpper("I am 4-word string")
MsgBox(0, "String converted to uppercase is:", $result)