mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-14 20:37:55 -05:00
22 lines
542 B
Markdown
22 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
|
||
|
```
|