Error getting tags :
error 404Error getting tags :
error 404
toUpper("AbC; dEf") -- returns "ABC; DEF"
toUpper("eclairs are VERY tasty!") -- returns "ECLAIRS ARE VERY TASTY!"
Use the toUpper function to change the case of a string.
Parameters:
The stringToConvert is any string or expression that evaluates to a string.
Value:
The toUpper function returns a string the same length as the stringToConvert.
Comments:
Lowercase letters, including special characters with diacritical marks, are converted to the uppercase equivalents. All other characters, including uppercase letters, numbers, punctuation, and special characters with no upper or lower case, are left unchanged by the toUpper function.
Important!
The toUpperfunction supports only characters whose ASCII value is less than 128. Special characters cannot be converted by this function.