I am currently working with liquid templates and I have a string that has a pipe delimiter |. How would I be able to split this string and display the specific string one I want?
I figured out how to split the string:
{{ "Cookies | Biscuits" | split: "|" }}
But I am unsure where to add the index of the string I need. For example, how can I get "Biscuits"?
Thanks