mirror of
https://github.com/kemko/liquid.git
synced 2026-01-01 15:55:40 +03:00
373 B
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" }} ```