Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 Twig 中,我想知道是否可以在某个字符之后不渲染所有内容。例如,如果我有字符串“Ironman 3 : Marvel”,我想去掉分号后面的所有内容,这样我的字符串就会变成“Ironman 3”。我想知道这是否可能?
你应该能够通过一些变化来做到这一点{{ movietitle|split(':')[0] }}
{{ movietitle|split(':')[0] }}