nushell/docs/commands/match.md
JT bff81f24aa
Autogenerate missing docs (#3514)
* Autogenerate missing docs

* Update ansi.md

* Rename question mark command docs

* Delete empty?.md
2021-05-30 12:57:04 +12:00

455 B

match

Filter rows by Regex pattern.

Usage

> match <member> <regex> {flags} 

Parameters

  • <member> the column name to match
  • <regex> the regex to match with

Flags

  • -h, --help: Display this help message
  • -i, --insensitive: case-insensitive search
  • -m, --multiline: multi-line mode: ^ and $ match begin/end of line
  • -s, --dotall: dotall mode: allow a dot . to match newline character \n
  • -v, --invert: invert the match