pyarrow.compute.binary_join_element_wise

pyarrow.compute.binary_join_element_wise(*strings, memory_pool=None, options=None, null_handling='emit_null', null_replacement='')

Join string arguments into one, using the last argument as the separator.

Insert the last argument of strings between the rest of the elements, and concatenate them. Any null separator element emits a null output. Null elements either emit a null (the default), are skipped, or replaced with a given string.

Parameters
  • *strings (Array-like or scalar-like) – Argument to compute function

  • memory_pool (pyarrow.MemoryPool, optional) – If not passed, will allocate memory from the default memory pool.

  • options (pyarrow.compute.JoinOptions, optional) – Parameters altering compute function semantics.

  • null_handling (optional) – Parameter for JoinOptions constructor. Either options or null_handling can be passed, but not both at the same time.

  • null_replacement (optional) – Parameter for JoinOptions constructor. Either options or null_replacement can be passed, but not both at the same time.