tpl/strings: strings.RuneCount

This commit is contained in:
David E. Wheeler
2018-06-04 13:47:03 -04:00
committed by Bjørn Erik Pedersen
parent c3115292a7
commit 019bd5576b
5 changed files with 88 additions and 1 deletions

View File

@@ -3146,7 +3146,25 @@
"Aliases": [
"countrunes"
],
"Examples": []
"Examples": [
[
"{{ \"Hello, 世界\" | countrunes }}",
"8"
]
]
},
"RuneCount": {
"Description": "RuneCount returns the number of runes in s",
"Args": [
"s"
],
"Aliases": [],
"Examples": [
[
"{{ \"Hello, 世界\" | strings.RuneCount }}",
"9"
]
]
},
"CountWords": {
"Description": "CountWords returns the approximate word count in s.",