str downcase for strings

Make text lowercase.

Signature

> str downcase ...rest

Parameters

  • ...rest: For a data structure input, convert strings at the given cell paths

Examples

Downcase contents

> 'NU' | str downcase
nu

Downcase contents

> 'TESTa' | str downcase
testa

Downcase contents

> [[ColA ColB]; [Test ABC]] | str downcase ColA
╭───┬──────┬──────╮
│ # │ ColA │ ColB │
├───┼──────┼──────┤
│ 0test │ ABC  │
╰───┴──────┴──────╯

Downcase contents

> [[ColA ColB]; [Test ABC]] | str downcase ColA ColB
╭───┬──────┬──────╮
│ # │ ColA │ ColB │
├───┼──────┼──────┤
│ 0test │ abc  │
╰───┴──────┴──────╯