polars concatenate for dataframe

Concatenates strings with other array.

Signature

> polars concatenate {flags} (other)

Parameters

  • other: Other array with string to be concatenated

Input/output types:

inputoutput
anyany

Examples

Concatenate string

> let other = ([za xs cd] | polars into-df);
    [abc abc abc] | polars into-df | polars concatenate $other
╭───┬───────╮
 # │   0   │
├───┼───────┤
 0 abcza
 1 abcxs
 2 abccd
╰───┴───────╯