mirror of
https://github.com/tiennm99/hugoDocs.git
synced 2026-09-17 06:24:53 +00:00
* Document string manipulation functions * Document crypto.FNV32a function * Document functions duration and time.ParseDuration * Changes according to review feedback
463 B
463 B
title, description, categories, menu, keywords, signature, aliases, relatedfuncs
| title | description | categories | menu | keywords | signature | aliases | relatedfuncs | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| strings.ContainsAny | Reports whether a string contains any character from a given string. |
|
|
|
|
|
{{ strings.ContainsAny "Hugo" "gm" }} → true
The check is case sensitive:
{{ strings.ContainsAny "Hugo" "Gm" }} → false