Operator Type:
Operator Scope of Action:
Operator Purpose:
Operator First Added:
Operator in Current Baseline:
Operator Last Altered:
Operator Has Newer Dot-Operator Variant:
Function [other Function type actions]
Item [operators of similar scope]
Formatting [other Formatting operators]
v4.6.0
Baseline
As at baseline
Yes
capitalize(dataStr)
The contents of text string dataStr is returned with the first letter of each word in upper case.
Functionally equivalent to String.capitalize.
if $MyString is "hello world":
$MyString = $MyString.capitalize();
sets it to "Hello World".