Files
liquid/filters/replace_first.md
2016-03-18 16:48:27 -04:00

408 B

title
title
replace_first

Replaces only the first occurrence of the first argument in a string with the second argument.

{% raw %}
{% assign my_string = "Take my protein pills and put my helmet on" %}
{{ my_string | replace_first: "my", "your" }}
{% endraw %}
{% assign my_string = "Take my protein pills and put my helmet on" %}
{{ my_string | replace_first: "my", "your" }}