mirror of
https://github.com/gohugoio/hugoDocs.git
synced 2025-09-13 16:06:44 -04:00
Improve substr examples
This commit is contained in:
parent
e16e57e9a4
commit
25cf8f48bb
@ -26,6 +26,18 @@ To extract characters from the end of the string, use a negative start number.
|
||||
In addition, borrowing from the extended behavior described at https://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"
|
||||
{{ substr "BatMan" 0 3 }} → "Bat"
|
||||
{{ substr "BatMan" 3 3 }} → "Man"
|
||||
|
||||
{{ substr "BatMan" 0 }} → "BatMan"
|
||||
{{ substr "BatMan" 1 }} → "atMan"
|
||||
|
||||
{{ substr "BatMan" 0 -1 }} → "BatMa"
|
||||
{{ substr "BatMan" 3 -1 }} → "Ma"
|
||||
|
||||
{{ substr "BatMan" -3 1 }} → "M"
|
||||
{{ substr "BatMan" -3 3 }} → "atM"
|
||||
|
||||
{{ substr "BatMan" -4 -1 }} → "tMa"
|
||||
{{ substr "BatMan" -4 -2 }} → "tM"
|
||||
```
|
||||
|
Loading…
x
Reference in New Issue
Block a user