mirror of
https://github.com/kemko/liquid.git
synced 2026-01-02 08:15:41 +03:00
346 B
346 B
title
| title |
|---|
| remove |
Removes every occurrence of the specified substring from a string.
Input
```liquid {% raw %} {{ "I strained to see the train through the rain" | remove: "rain" }} {% endraw %} ```Output
```text {{ "I strained to see the train through the rain" | remove: "rain" }} ```