ak.str.join#
Defined in awkward.operations.str.akstr_join on line 21.
- ak.str.join(array, separator, *, highlevel=True, behavior=None, attrs=None)#
- Parameters:
array – Array-like data (anything
ak.to_layoutrecognizes).separator (str, bytes, or array of them to broadcast) – separator to insert between strings. If array-like,
separatoris broadcast againstarray.highlevel (bool) – If True, return an
ak.Array; otherwise, return a low-levelak.contents.Contentsubclass.behavior (None or dict) – Custom
ak.behaviorfor the output array, if high-level.attrs (None or dict) – Custom attributes for the output array, if high-level.
Concatenate the strings in
array. Theseparatoris inserted between each string. If array-like,separatoris broadcast againstarraywhich permits a unique separator for each list of strings inarray.Note: this function does not raise an error if the
arraydoes not contain any string or bytestring data.Requires the pyarrow library and calls pyarrow.compute.binary_join.
See also:
ak.str.join_element_wise.