slice

只传入一个参数时将返回此参数作为下标所对应的单个字符。第二个参数是可选的,用于指定返回的子字符串的长度。

String indices are numbered starting from 0.

输入


{{ "Liquid" | slice: 0 }}

输出

L

输入


{{ "Liquid" | slice: 2 }}

输出

q

输入


{{ "Liquid" | slice: 2, 5 }}

输出

quid

If the first parameter is a negative number, the indices are counted from the end of the string:

输入


{{ "Liquid" | slice: -3, 2 }}

输出

ui