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

match Operator

11 juillet 2023 à 8h24
purposereturns each item in the list that matches the parameter 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 parameter string (potentially including duplicates)
! outputeach item in the input list that does not match the parameter string

Learn more about how to use Filters

Depuis : 5.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

Examples