dfr lowercase
for dataframe
Lowercase the strings in the column.
Signature
> dfr lowercase
Input/output types:
input | output |
---|---|
any | any |
Examples
Modifies strings to lowercase
> [Abc aBc abC] | dfr into-df | dfr lowercase
╭───┬─────╮
│ # │ 0 │
├───┼─────┤
│ 0 │ abc │
│ 1 │ abc │
│ 2 │ abc │
╰───┴─────╯
Tips: Dataframe commands were not shipped in the official binaries by default, you have to build it with --features=dataframe
flag