FQL v4 will be decommissioned on June 30, 2025. Ensure that you complete your migration from FQL v4 to FQL v10 by that date. Fauna accounts created after August 21, 2024 must use FQL v10. These accounts will not be able to run FQL v4 queries or access the v4 Dashboard. For more details, see the v4 EOL announcement and migration guide. Contact support@fauna.com with any questions. |
UpperCase
This reference topic applies to FQL v4. Go to this page for the latest FQL v10 reference topics. |
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.
Parameters
Parameter | Type | Definition and Requirements |
---|---|---|
|
String |
The String to be 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.
[ 'FIRE', 'FIRE AND FIREMAN' ]
['FIRE', 'FIRE AND FIREMAN']
[FIRE FIRE AND FIREMAN]
Arr(StringV(FIRE), StringV(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!