WordCount method (text)
Returns the number of words.
Syntax
text.Length
Returns the number of words in the text as a number.
Example
{% Var value1 = 'alpha bravo charlie' %}
{% Var value2 = 'Apple' %}
Answers: {{ value1.Length }},
{{ value2.Length }},
The above example would output: Answers: 3, 1