reverse
将数组中的所有项的顺序反转。reverse
不能操作字符串。
输入
{% assign my_array = "apples, oranges, peaches, plums" | split: ", " %}
{{ my_array | reverse | join: ", " }}
输出
plums, peaches, oranges, apples
reverse
不能直接应用到字符串上,但是你可以先将字符串分割成字符数组,然后再将数组反转,最后将反转之后的数组合并。
输入
{{ "Ground control to Major Tom." | split: "" | reverse | join: "" }}
输出
.moT rojaM ot lortnoc dnuorG