pyarrow.compute.binary_join#
- pyarrow.compute.binary_join(strings,separator,/,*,memory_pool=None)#
Join a list of strings together with a separator.
Concatenate the strings inlist. Theseparator is insertedbetween each given string.Any null input and any nulllist element emits a null output.
- Parameters:
- stringsArray-like or scalar-like
Argument to compute function.
- separatorArray-like or scalar-like
Argument to compute function.
- memory_pool
pyarrow.MemoryPool, optional If not passed, will allocate memory from the default memory pool.
On this page

