summaryrefslogtreecommitdiffstats
path: root/content/en/functions/strings.HasSuffix.md
blob: 3b82ea055ed4b9ee1ad9563897923258f6a2f7f8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
---
title: strings.HasSuffix
description: Determine whether or not a given string ends with the provided trailing suffix string.
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