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' ]