Function Block EXPLODE

The Function Block EXPLODE splits a string based on the delimiters.

Note: This function is Binary-Safe. This means that UTF8 characters cannot be processed directly.

Note: This Function Block can have more than two outputs. You can right-click on the Function Block to add another output.

Input STR

The input defines the string that is to be split.

Input DELIMITER

The input defines a string as delimiter after which the string will be split. The delimiter string is removed during splitting.

Input LIMIT

The input defines the limit of the split parts. If no input is defined or the input equals NULL, then INT_MAX is assumed.

Outputs P0..P#

Each output provides a part without the delimiter DELIMITER. Undefined parts are provided with the value NULL.

See Also