mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-14 20:37:55 -05:00
9b0050e9aa
git-subtree-dir: docs git-subtree-split: 5c085a37b297bf12f59efeaae591418ec025c10d
21 lines
542 B
Markdown
21 lines
542 B
Markdown
---
|
|
title: strings.HasSuffix
|
|
description: Reports whether the given string ends with the given suffix.
|
|
categories: []
|
|
keywords: []
|
|
action:
|
|
aliases: [hasSuffix]
|
|
related:
|
|
- functions/strings/Contains
|
|
- functions/strings/ContainsAny
|
|
- functions/strings/ContainsNonSpace
|
|
- functions/strings/HasPrefix
|
|
- functions/collections/In
|
|
returnType: bool
|
|
signatures: [strings.HasSuffix STRING SUFFIX]
|
|
aliases: [/functions/hassuffix,/functions/strings/hassuffix]
|
|
---
|
|
|
|
```go-html-template
|
|
{{ hasSuffix "Hugo" "go" }} → true
|
|
```
|