Houdini 20.0 Nodes VOP nodes

Split String VOP node

Splits a string into tokens.

On this page
Since 14.0

Splits a string into tokens by removing separator characters from the string and creating an array entry for each substring bounded by separators. When no separator string is provided, the string is split on whitespace (spaces, tab, and return).

The maxsplits parameter limits the number of times the string is split, this is useful to peel off one token at a time from a larger string.

Note

This differs from Python’s split() in that it takes a list of separators, not a single string to use as a separator.

Inputs

String

The string to split.

Separators

The separators to split the string on.

Max Splits

The maximum number of splits to perform.

Outputs

Split String

An array of string tokens the input string was split into.

See also

VOP nodes