Skip to content Skip to footer navigation
You are reading the docs for an old version of Statamic. Consider upgrading to Statamic 6.

Length Modifier

Returns the number of items in an array or characters in a string.

array:
- Taylor Swift
- Left Shark
- Leroy Jenkins
string: LEEEEROOOYYYY JEEENKINNNSS!
{{ array | length }}
{{ string | length }}
{{ Statamic::modify($array)->length() }}
{{ Statamic::modify($string)->length() }}
3
27