This version is out of date, covering development from v7.0.0 to v7.5.6. 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 7 Icon

String.lowercase()


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.lowercase()

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

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

$MyString.lowercase() 

"My NEW Title".lowercase() 

The latter results in "my new title".

The trailing parentheses may be omitted:

$MyString.lowercase 

Functionally equivalent to lowercase().