mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-14 20:37:55 -05:00
ec4e6f9df2
git-subtree-dir: docs git-subtree-split: f887bd7b4e3e7c7e76cd63951e5b0d37d8fe0ac7
994 B
994 B
title | description | godocref | date | publishdate | lastmod | categories | menu | aliases | signature | workson | hugoversion | relatedfuncs | deprecated | ||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
substr | Extracts parts of a string from a specified character's position and returns the specified number of characters. | 2017-02-01 | 2017-02-01 | 2017-02-01 |
|
|
|
false |
It normally takes two parameters: start
and length
. It can also take one parameter: start
, i.e. length
is omitted, in which case the substring starting from start until the end of the string will be returned.
To extract characters from the end of the string, use a negative start number.
In addition, borrowing from the extended behavior described at http://php.net substr, if length
is given and is negative, that number of characters will be omitted from the end of string.
{{substr "BatMan" 0 -3}} → "Bat"
{{substr "BatMan" 3 3}} → "Man"