summaryrefslogtreecommitdiffstats
path: root/docs/content/en/functions/strings.TrimPrefix.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/content/en/functions/strings.TrimPrefix.md')
-rw-r--r--docs/content/en/functions/strings.TrimPrefix.md25
1 files changed, 0 insertions, 25 deletions
diff --git a/docs/content/en/functions/strings.TrimPrefix.md b/docs/content/en/functions/strings.TrimPrefix.md
deleted file mode 100644
index eeeecf76e..000000000
--- a/docs/content/en/functions/strings.TrimPrefix.md
+++ /dev/null
@@ -1,25 +0,0 @@
----
-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