{{getMsg('Help_YouAreHere')}}: {{page.title}} {{page.title}}

Length

This formula calculates the length of the given string and returns the number of characters, including all white spaces.

Usage:

Length( String )

Parameters:

string The input string to count characters of.

Returns:

The number of characters in the given string.

Examples:

length("")	// Returns the value 0.
length("abc")	// Returns the value 3.