Tinderbox v10 Icon

String.uppercase()


Operator Type: 

Operator Scope of Action: 

Operator Purpose: 

Data Type Returned: 

Operator First Added: 

Operator in Current Baseline: 

Operator Last Altered: 

 Function  [other Function type actions]

 Item  [operators of similar scope]

 Formatting  [other Formatting operators]

 String [about String data type]

 v5.9.0

 Baseline

 As at baseline


Syntax note: Operators without any defined mandatory arguments may omit their empty closing parentheses


String.uppercase()

String.uppercase

Returns the referenced String, transforming all uppercase letters to lowercase.

The function can be chained to both string data and to string literals:

$MyString.uppercase() 

"my new title".uppercase() 

The latter gives "MY NEW TITLE".

The trailing parentheses may be omitted:

$MyString.uppercase 

Functionally equivalent to uppercase().

If $MyString is "hello world":

$MyString = $MyString.uppercase; 

$MyString is set to "HELLO WORLD".

The .uppercase() method may also be used on Lists or Sets. Consider [Ant;BEE;Cow] stored in $MyList:

$MyList = $MyList.uppercase; 

… giving [ANT;BEE;COW].


See also—notes linking to here: