Edit on GitHub
Jump to docs navigation

Twig Components / Methods / preg_split

Note: You are currently reading the documentation for Bolt 5.0. Looking for the documentation for Bolt 5.2 instead?

preg_split(pattern) is a Twig filter to make PHPs preg_split() function available as Twig filter. It splits text into an array using a regular expression.

{% set keywords = "hypertext language, programming" %}
{{ keywords|preg_split("/[\s,]+/" }}

The result will be:

[0] => hypertext
[1] => language
[2] => programming

Source: Jasny



Edit this page on GitHub
Couldn't find what you were looking for? We are happy to help you in the forum, on Slack or on Github.