hugo/docs/content/en/functions/strings.HasSuffix.md
2021-10-31 13:53:55 +01:00

552 B

title description date publishdate lastmod categories menu keywords signature workson hugoversion relatedfuncs deprecated aliases
strings.HasSuffix Determine whether or not a given string ends with the provided trailing suffix string. 2019-08-13 2019-08-13 2019-08-13
functions
docs
parent
functions
strings
strings.HasSuffix STRING SUFFIX
hasPrefix
false
{{ $pdfPath := "/path/to/some.pdf" }}
{{ strings.HasSuffix $pdfPath "pdf" }} → true
{{ strings.HasSuffix $pdfPath "txt" }} → false