Files
hugo/content/en/functions/strings.TrimPrefix.md
T
Anthony Fok 77578f5bfc Move content/ into new contentDir content/en/
in preparation for adding new translations such as Chinese.

Paths for "readfile" shortcode are adjusted accordingly.

See #461
2018-05-01 11:23:28 -06:00

726 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.TrimPrefix Returns a given string s without the provided leading prefix string. If s doesn't start with prefix, s is returned unchanged. 2017-02-01 2017-02-01 2017-02-01
functions
docs
parent
functions
strings
strings.TrimPrefix PREFIX STRING
strings.TrimSuffix
false

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"