Converts the input text to uppercase.
Function
result = toupper(condition)
Arguments
Argument | Data Type |
input | any |
---|---|
result | any |
Comments
Text values should not be converted to upper or lower case for the sole purpose of comparing values in a case-insensitive manner as this can reduce performance and text comparisons are automatically case insensitive.
Examples
result = toupper('Falcon Heavy') /* 'FALCON HEAVY' */