$strUpper = Upper (
<string>
)
Returns a copy of the
<string>
converted to uppercase.
Parameters
<string>
String parameter to be converted.
Return Value
Returns the converted string in upper case.
Remarks
None.
Example
$a = "abcd" $b = Upper($a)
$b
now contains
"ABCD"
.