Module datafusion_functions_nested::string
source · Expand description
ScalarUDFImpl
definitions for array_to_string and string_to_array functions.
Functions§
- converts each element to its text representation.
- ScalarFunction that returns a
ScalarUDF
for ArrayToString - splits a
string
based on adelimiter
and returns an array of parts. Any parts matching the optionalnull_string
will be replaced withNULL
- String_to_array SQL function Splits string at occurrences of delimiter and returns an array of parts string_to_array(‘abc~@
def@ghi’, ‘@~’) = ‘[“abc”, “def”, “ghi”]’ - ScalarFunction that returns a
ScalarUDF
for StringToArray