Files
liquid/filters/remove_first.md
2016-04-02 18:46:32 -04:00

373 B

title
title
remove_first

Removes only the first occurrence of the specified substring from a string.

Input

```liquid {% raw %} {{ "I strained to see the train through the rain" | remove_first: "rain" }} {% endraw %} ```

Output

```text {{ "I strained to see the train through the rain" | remove_first: "rain" }} ```