substr
少于1分钟
将以下英文翻译为中文:
substr
https://gohugo.io/functions/substr/
Extracts parts of a string from a specified character’s position and returns the specified number of characters.
语法
substr STRING START [LENGTH]
strings.Substr STRING START [LENGTH]
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.
If length is given and is negative, that number of characters will be omitted from the end of string.
| |
另请参阅
最后修改 June 1, 2023: 新增一个配置参数:sidebar_menu_truncate = 500 用于解决菜单不全的问题 (27810f1)