ToUpper Syntax ToUpper(str); str A string. Description Converts all characters in a string to upper case. Returns A copy of the input string with all characters in upper case. Example $var1="StreamServe";$var2=ToUpper($var1); Result: $var2="STREAMSERVE"
ToUpper(str);
str
$var1="StreamServe";$var2=ToUpper($var1);
$var2="STREAMSERVE"