Length method (text)
Returns the number of characters.
Syntax
text.Length
Returns the number of characters in the text as a number.
Example
{% Var value1 = 'abc' %}
{% Var value2 = 'Apple' %}
Answers: {{ value1.Length }},
{{ value2.Length }},
The above example would output: Answers: 3, 5