SPLIT
Deprecated version
This document refers to a deprecated version of the RQL programming language.
Please go here for documentation related to the latest supported version.
Split a string into a collection of strings given a string as separator.
Syntax
SPLIT(<string>, <string or char separator>)
Example
split("Value1||Value2", "||") // ["Value1","Value2"]
split("Value1|Value2", "|") // ["Value1","Value2"]
split("Value", null) // null
split(null, "1") // null