dfr replace for dataframe

Replace the leftmost (sub)string by a regex pattern.

WARNING

Dataframe commands were not shipped in the official binaries by default, you have to build it with --features=dataframe flag

Signature

> dfr replace {flags}

Flags

  • --pattern, -p {string}: Regex pattern to be matched
  • --replace, -r {string}: replacing string

Input/output types:

inputoutput
anyany

Examples

Replaces string

> [abc abc abc] | dfr into-df | dfr replace --pattern ab --replace AB
╭───┬─────╮
 # │  0  │
├───┼─────┤
 0 ABc
 1 ABc
 2 ABc
╰───┴─────╯