Split

This function can be used to divide a string into sections, whereby the resulting string snippets are output as an array and can be reassembled into a coherent string using a Join Node, for example. The division of the string always occurs where a given character is detected. The character string ABC/DEF/GHI can, for example, be searched for the character /, for example, and split at these points. This would create the three strings ABC, DEF and GHI in this example. The separator is not only used for separating, but also removed from the string.