电子邮件 Liquid 模板 - 拆分字符串并显示内联字符串 [index]

Email Liquid Templates - Split string and show string[index] inline

我目前正在使用液态模板,并且我有一个带有竖线分隔符 | 的字符串。我怎样才能拆分这个字符串并显示我想要的特定字符串?

我想出了如何拆分字符串:

{{ "Cookies | Biscuits" | split: "|" }}

但是我不确定在哪里添加我需要的字符串的索引。例如,如何获得 "Biscuits"?

谢谢

{{ "Cookies | Biscuits" | split: "|" | first | strip }} Cookies

{{ "Cookies | Biscuits" | split: "|" | last | strip }} 饼干

或通过索引访问:

{%- assign typeParts = "Cookies | Biscuits" | split: "|" -%}

然后:
{{ typeParts[0] | strip }} 用于 Cookie
{{ typeParts[1] | strip }} 饼干