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

String.size


Operator Type: 

Operator Scope of Action: 

Operator Purpose: 

Operator First Added: 

Operator Altered: 

 Property   [other Property type actions]

 Item   [operators of similar scope]

 Data manipulation   [other Data manipulation operators]

 Baseline

 


String.size()

This returns the Number of characters in a string value. The returned number can be coerced to a string. Examples:

$MyString = "hello world"; $MyNumber = $MyString.size; $MyStringA = $MyString.size; 

The value of $MyNumber will be the number 11, $MyStringA will be the string "11".

This operator can also be used on other attribute data types that are string-like, URL, File, etc.