mirror of
https://github.com/gohugoio/hugo.git
synced 2026-08-25 15:58:53 +00:00
tpl/strings: strings.RuneCount
This commit is contained in:
committed by
Bjørn Erik Pedersen
parent
828ea5f15c
commit
081f8a0f92
@@ -0,0 +1,28 @@
|
||||
---
|
||||
title: strings.RuneCount
|
||||
description: Determines the number of runes in a string.
|
||||
godocref:
|
||||
date: 2018-06-01
|
||||
publishdate: 2018-06-01
|
||||
lastmod: 2018-06-01
|
||||
categories: [functions]
|
||||
menu:
|
||||
docs:
|
||||
parent: "functions"
|
||||
keywords: [counting, character count, length, rune length, rune count]
|
||||
signature: ["strings.RuneCount INPUT"]
|
||||
workson: []
|
||||
hugoversion:
|
||||
relatedfuncs: ["len", "countrunes"]
|
||||
deprecated: false
|
||||
aliases: []
|
||||
---
|
||||
|
||||
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. -->
|
||||
```
|
||||
|
||||
[`utf8.RuneCount`]: https://golang.org/pkg/unicode/utf8/#RuneCount
|
||||
+19
-1
@@ -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.",
|
||||
|
||||
Reference in New Issue
Block a user