mirror of
https://github.com/tiennm99/hugoDocs.git
synced 2026-09-15 06:20:23 +00:00
599 B
599 B
title, description, categories, menu, keywords, signature, relatedfuncs
| title | description | categories | menu | keywords | signature | relatedfuncs | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| strings.TrimPrefix | Returns a given string s without the provided leading prefix string. If s doesn't start with prefix, s is returned unchanged. |
|
|
|
|
|
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"