Operator Type:
Operator Scope of Action:
Operator Purpose:
Operator First Added:
Operator Altered:
Function [other Function type actions]
Item [operators of similar scope]
Formatting [other Formatting operators]
Baseline
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 now "HELLO WORLD".