explode

Summary

Splits the input string and returns it as an array of strings.

Usage

input|explode( separator )

Parameters

NameTypeDescriptionRequired
separator string Split sequence. Yes.

Returns

An array of strings.

Description

This operator takes a string as input and returns an array of strings. Each element in the array will be a part of the input string extracted on the basis of the specified sequence of split characters.

Examples

Example 1

{'All-your-base-are-belong-to-us!'|explode( '-' )}

The following array will be returned: ( 'All', 'your', 'base', 'are', 'belong', 'to', 'us!' ).

Powered by eZ Publish™ CMS Open Source Web Content Management. Copyright © 1999-2013 eZ Systems AS (except where otherwise noted). All rights reserved.