- ⌂ Text
- Directives
#STRTOUPPER
Return a string with all lowercase characters converted to uppercase. The input string contain UTF8 characters, which will be properly converted to uppercase.
Prototype
#STRTOUPPER($string) or #UC($string)
Parameters
- string - The input string.
Return
Returns the string with all lowercase characters converted to uppercase.
Example
#/ Upper: THIS IS SOME TEXT.
#LOCAL($Text, "This is SOME Text.")
Upper: #STRTOUPPER($Text)