11th July 2023 at 8:24am
purpose | returns each item in the list that matches the parameter string |
---|---|
input | a selection of titles |
suffix | the match operator uses a rich suffix, see below for details |
parameter | the string to be matched |
output | each item in the input list that matches the parameter string (potentially including duplicates) |
! output | each item in the input list that does not match the parameter string |
Learn more about how to use Filters
Introduced in v5.1.20
The match
operator uses an extended syntax that permits multiple flags to be passed:
[match:<flag list>[<parameter>]]
- flag list: a comma delimited list of flags
The available flags are:
- casesensitive: (default), this flag forces a case-sensitive match, where upper and lower case letters are considered different
- caseinsensitive: overrides the default so that upper and lower case letters are considered identical for matching purposes