;doc: csv: negative matchers (#2088)

This commit is contained in:
Simon Michael 2023-10-09 20:54:55 +01:00
parent 20132e892b
commit c577fa809b

View File

@ -3277,7 +3277,8 @@ When an if block has multiple matchers, they are combined as follows:
- By default they are OR'd (any one of them can match)
- When a matcher is preceded by ampersand (`&`) it will be AND'ed with the previous matcher (both of them must match).
There's not yet an easy syntax to negate a matcher.
When a matcher is preceded by an exclamation mark (!), the matcher will be negated, ie it will exclude CSV records that match.
## `if` table