# Filters

Filters enable you to modify the content of variables within your template.

If you'd like access to a TWIG filter that is not available below, [please let us know.](https://forms.monday.com/forms/8cbacdac7c30b725cd4617cbba0e5eeb?r=use1)

### Available Filters

| Filter          | Documentation                                                       |
| --------------- | ------------------------------------------------------------------- |
| `escape`        | [View](https://twig.symfony.com/doc/1.x/filters/escape.html)        |
| `length`        | [View](https://twig.symfony.com/doc/1.x/filters/length.html)        |
| `raw`           | [View](https://twig.symfony.com/doc/1.x/filters/raw.html)           |
| `money`         | [View](#money)                                                      |
| `slice`         | [View](https://twig.symfony.com/doc/1.x/filters/slice.html)         |
| `number_format` | [View](https://twig.symfony.com/doc/1.x/filters/number_format.html) |
| `date`          | [View](https://twig.symfony.com/doc/1.x/filters/date.html)          |
| `nl2br`         | [View](https://twig.symfony.com/doc/1.x/filters/nl2br.html)         |
| `replace`       | [View](https://twig.symfony.com/doc/1.x/filters/replace.html)       |
| `split`         | [View](https://twig.symfony.com/doc/1.x/filters/split.html)         |
| `upper`         | [View](https://twig.symfony.com/doc/1.x/filters/upper.html)         |
| `lower`         | [View](https://twig.symfony.com/doc/1.x/filters/lower.html)         |

### Filter Documentation

### `money`

The money filter transforms a variable into a monetary format.

```twig
{% set value = 1 %}

{{ value|money }} // returns 1.00
```
