UpperCase
UpperCase( value )
UpperCase( value )
UpperCase( value )
UpperCase( value )
uppercase( value )
UpperCase( value )
Description
The UpperCase
function returns a string which has all lowercase
characters in the string replaced by their corresponding uppercase
characters.
Returns
A String which has all characters from value
converted to
uppercase.
Examples
The following query executes an array of independent UpperCase
operations and returns the results in an array. The result array
position matches the execution array position. The first operation takes
the string "FiRe" and converts all characters in the string to
uppercase. The resultant object "FIRE" is placed in the top position of
the result array. The second operation uses the string "FiRe And
FireMan" and converts all characters to uppercase. The new uppercase
string is placed in the second position of the result array.
Arr(StringV(FIRE), StringV(FIRE AND FIREMAN))
[FIRE FIRE AND FIREMAN]
["FIRE", "FIRE AND FIREMAN"]
[ 'FIRE', 'FIRE AND FIREMAN' ]
['FIRE', 'FIRE AND FIREMAN']
[ 'FIRE', 'FIRE AND FIREMAN' ]
Is this article helpful?
Tell Fauna how the article can be improved:
Visit Fauna's forums
or email docs@fauna.com
Thank you for your feedback!