mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-14 20:37:55 -05:00
24 lines
562 B
Markdown
24 lines
562 B
Markdown
|
---
|
||
|
title: strings.HasSuffix
|
||
|
description: Determine whether or not a given string ends with the provided trailing suffix string.
|
||
|
godocref:
|
||
|
date: 2019-08-13
|
||
|
publishdate: 2019-08-13
|
||
|
lastmod: 2019-08-13
|
||
|
categories: [functions]
|
||
|
menu:
|
||
|
docs:
|
||
|
parent: "functions"
|
||
|
keywords: [strings]
|
||
|
signature: ["strings.HasSuffix STRING SUFFIX"]
|
||
|
workson: []
|
||
|
hugoversion:
|
||
|
relatedfuncs: [hasPrefix]
|
||
|
deprecated: false
|
||
|
aliases: []
|
||
|
---
|
||
|
|
||
|
{{ $pdfPath := "/path/to/some.pdf" }}
|
||
|
{{ strings.HasSuffix $pdfPath "pdf" }} → true
|
||
|
{{ strings.HasSuffix $pdfPath "txt" }} → false
|