Files
hugo/content/en/functions/strings.HasSuffix.md
T
Dan Siddoway fa5533c69b Add strings.HasSuffix documentation
I tracked this down *via* <https://discourse.gohugo.io/t/solved-add-hassuffix-function/13160>. It came in handy for me; may it do so for others as well.
2019-08-16 09:59:35 +02:00

562 B

title, description, godocref, date, publishdate, lastmod, categories, menu, keywords, signature, workson, hugoversion, relatedfuncs, deprecated, aliases
title description godocref 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