Skip to content Skip to footer navigation

Insert Modifier

Inserts a string at the position provided. The beginning of the string is position 0.

opinion: This is yummy.
{{ opinion | insert('not', 8) }}
{{ Statamic::modify($opinion)->insert(['not', 8]) }}
This is not yummy.