hugo/docs/content/en/functions/strings.RuneCount.md
2023-05-22 16:47:07 +02:00

700 B

title description categories menu keywords signature relatedfuncs
strings.RuneCount Determines the number of runes in a string.
functions
docs
parent
functions
counting
character count
length
rune length
rune count
strings.RuneCount INPUT
len
countrunes

In contrast with strings.CountRunes function, which strips HTML and whitespace before counting runes, strings.RuneCount simply counts all the runes in a string. It relies on the Go [utf8.RuneCountInString] function.

{{ "Hello, 世界" | strings.RuneCount }}
<!-- outputs a content length of 9 runes. -->