Telt het aantal tekens in een variabele of tekstreeks. Gebruik de booleaanse parameter "true" om spaties mee te tellen in het totale aantal.

modifier

{{"tekst"|count_characters}}

Argumenten

ArgumentsToelichting
1Een boolean om aan te geven of spaties meegenomen moeten worden in de telling. Deze is standaard false.

Voorbeelden

voorbeeld

{{$message ='Welcome! Here is Your Special Offer!'}}


{{$message|count_characters}}
{{$message|count_characters:true}}


Uitkomst:

31
36