mirror of
https://github.com/gohugoio/hugoDocs.git
synced 2025-09-11 12:24:42 -04:00
Document strings.ContainsNonSpace
This commit is contained in:
parent
8dbe5df90b
commit
9046bf424b
27
content/en/functions/strings.ContainsNonSpace.md
Normal file
27
content/en/functions/strings.ContainsNonSpace.md
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
---
|
||||||
|
title: strings.ContainsNonSpace
|
||||||
|
description: Reports whether a string contains any non-space characters as defined by Unicode’s White Space property.
|
||||||
|
categories: [functions]
|
||||||
|
menu:
|
||||||
|
docs:
|
||||||
|
parent: functions
|
||||||
|
keywords: [whitespace space]
|
||||||
|
signature: ["strings.ContainsNonSpace STRING"]
|
||||||
|
relatedfuncs: ["strings.Contains","strings.ContainsAny"]
|
||||||
|
---
|
||||||
|
|
||||||
|
```go-html-template
|
||||||
|
{{ strings.ContainsNonSpace "\n" }} → false
|
||||||
|
{{ strings.ContainsNonSpace " " }} → false
|
||||||
|
{{ strings.ContainsNonSpace "\n abc" }} → true
|
||||||
|
```
|
||||||
|
|
||||||
|
Common white space characters include:
|
||||||
|
|
||||||
|
```text
|
||||||
|
'\t', '\n', '\v', '\f', '\r', ' '
|
||||||
|
```
|
||||||
|
|
||||||
|
See the [Unicode Character Database] for a complete list.
|
||||||
|
|
||||||
|
[Unicode Character Database]: https://www.unicode.org/Public/UCD/latest/ucd/PropList.txt
|
Loading…
x
Reference in New Issue
Block a user