Split

Overview

The Split Node separates a String into two or more Strings. It receives as inputs the String to separate and a delimiter String, which marks where the separations will be made. Thus, if the String to split is abcdecba and the delimiter is c, the resulting Strings will be ab, de, and ba.

The resulting Strings are outputted in an Array.

In the case that the delimiter is not contained in the String to separate, the output is an Array containing just the original String.

Scope: Project, Scene, Function, Prefab.

Attributes

Inputs

Inputs

Outputs

See Also

Last updated