Tutorials References Exercises Videos Menu
Create Website Get Certified Upgrade

Template Filter - cut


Example

Remove the phrase "snes" form the name "Emil Refsnes":

<h1>{{ name|cut:"snes" }}.</h1>
Run Example »

Definition and Usage

The cut filter removes the specified phrase from the value.

The cut filter is case sensitive.

All occurences of the specified phrase/character are removed.

Example

Remove all "e" characters from the name "Emil Refsnes":

<h1>{{ name|cut:"e" }}.</h1>
Run Example »

Syntax

{{ value|cut:phrase }}

Template filters are defined by using a pipe | character followed by the name of the filter.

Arguments are defined by using a colon : character followed by the argument value.


Arguments

Value Description
phrase Required. A string specifying the part to remove from the value.