From a2262d241ea5ee091f1c7a12c78883256c9dd169 Mon Sep 17 00:00:00 2001 From: digitalcraftsman Date: Mon, 25 Sep 2017 19:26:34 +0200 Subject: [PATCH] Document strings.TrimPrefix and TrimSuffix template functions Closes #148 --- content/functions/strings.TrimPrefix.md | 25 +++++++++++++++++++++++++ content/functions/strings.TrimSuffix.md | 25 +++++++++++++++++++++++++ 2 files changed, 50 insertions(+) create mode 100644 content/functions/strings.TrimPrefix.md create mode 100644 content/functions/strings.TrimSuffix.md diff --git a/content/functions/strings.TrimPrefix.md b/content/functions/strings.TrimPrefix.md new file mode 100644 index 000000000..eeeecf76e --- /dev/null +++ b/content/functions/strings.TrimPrefix.md @@ -0,0 +1,25 @@ +--- +title: strings.TrimPrefix +description: Returns a given string s without the provided leading prefix string. If s doesn't start with prefix, s is returned unchanged. +godocref: +date: 2017-02-01 +publishdate: 2017-02-01 +lastmod: 2017-02-01 +categories: [functions] +menu: + docs: + parent: "functions" +keywords: [strings] +signature: ["strings.TrimPrefix PREFIX STRING"] +workson: [] +hugoversion: +relatedfuncs: [strings.TrimSuffix] +deprecated: false +aliases: [] +--- + +Given the string `"aabbaa"`, the specified prefix is only removed if `"aabbaa"` starts with it: + + {{ strings.TrimPrefix "a" "aabbaa" }} → "abbaa" + {{ strings.TrimPrefix "aa" "aabbaa" }} → "bbaa" + {{ strings.TrimPrefix "aaa" "aabbaa" }} → "aabbaa" \ No newline at end of file diff --git a/content/functions/strings.TrimSuffix.md b/content/functions/strings.TrimSuffix.md new file mode 100644 index 000000000..208e0968d --- /dev/null +++ b/content/functions/strings.TrimSuffix.md @@ -0,0 +1,25 @@ +--- +title: strings.TrimSuffix +description: Returns a given string s without the provided trailing suffix string. If s doesn't end with suffix, s is returned unchanged. +godocref: +date: 2017-02-01 +publishdate: 2017-02-01 +lastmod: 2017-02-01 +categories: [functions] +menu: + docs: + parent: "functions" +keywords: [strings] +signature: ["strings.TrimSuffix SUFFIX STRING"] +workson: [] +hugoversion: +relatedfuncs: [strings.TrimPrefix] +deprecated: false +aliases: [] +--- + +Given the string `"aabbaa"`, the specified suffix is only removed if `"aabbaa"` ends with it: + + {{ strings.TrimSuffix "a" "aabbaa" }} → "aabba" + {{ strings.TrimSuffix "aa" "aabbaa" }} → "aabb" + {{ strings.TrimSuffix "aaa" "aabbaa" }} → "aabbaa" \ No newline at end of file