pub fn string_to_array<T: OffsetSizeTrait>(
    args: &[ArrayRef]
) -> Result<ArrayRef>
Expand description

Splits string at occurrences of delimiter and returns an array of parts string_to_array(‘abc~@def@ghi’, ‘@~’) = ‘[“abc”, “def”, “ghi”]’