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.