mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-14 20:37:55 -05:00
5fd1e74903
``` git subtree add --prefix=docs/ https://github.com/gohugoio/hugoDocs.git master --squash ``` Closes #11925
23 lines
632 B
Markdown
23 lines
632 B
Markdown
---
|
|
title: strings.TrimPrefix
|
|
description: Returns the given string, removing the prefix from the beginning of the string.
|
|
categories: []
|
|
keywords: []
|
|
action:
|
|
aliases: []
|
|
related:
|
|
- functions/strings/Chomp
|
|
- functions/strings/Trim
|
|
- functions/strings/TrimLeft
|
|
- functions/strings/TrimRight
|
|
- functions/strings/TrimSuffix
|
|
returnType: string
|
|
signatures: [strings.TrimPrefix PREFIX STRING]
|
|
aliases: [/functions/strings.trimprefix]
|
|
---
|
|
|
|
```go-html-template
|
|
{{ strings.TrimPrefix "a" "aabbaa" }} → abbaa
|
|
{{ strings.TrimPrefix "aa" "aabbaa" }} → bbaa
|
|
{{ strings.TrimPrefix "aaa" "aabbaa" }} → aabbaa
|
|
```
|