This version is out of date, covering development from v9.5.0 to v9.7.3. It is maintained here only for inbound reference links from elsewhere. It is no longer actively updated.

Jump to the current version of aTbRef

Tinderbox v9 Icon

capitalize(dataStr)


Operator Type: 

Operator Scope of Action: 

Operator Purpose: 

Operator First Added: 

Operator Last Altered: 

Operator Has Newer Dot-Operator Variant: 

 Function  [other Function type actions]

 Item  [operators of similar scope]

 Formatting  [other Formatting operators]

 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".