This page is part of a static HTML representation of the TiddlyWiki at https://tiddlywiki.com/

match Operator

 31st July 2019 at 8:10am
purposereturns each item in the list that matches the operand string
inputa selection of titles
suffixthe match operator uses a rich suffix, see below for details
parameterthe string to be matched
outputeach item in the input list that matches the operand string (potentially including duplicates)
! outputeach item in the input list that does not match the operand string
Learn more about how to use Filters

New in: 5.1.20

The match operator uses an extended syntax that permits multiple flags to be passed:

[match:<flag list>[<operand>]]
  • flag list: a comma delimited list of flags
  • operand: filter operand

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

Examples