polars uppercase for dataframe

Uppercase the strings in the column.

Signature

> polars uppercase {flags}

Input/output types:

inputoutput
anyany

Examples

Modifies strings to uppercase

> [Abc aBc abC] | polars into-df | polars uppercase
╭───┬─────╮
 # │  0  │
├───┼─────┤
 0 ABC
 1 ABC
 2 ABC
╰───┴─────╯