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 in list. The separator is inserted between each given string. Any null input and any null list 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_poolpyarrow.MemoryPool, optional

If not passed, will allocate memory from the default memory pool.