이 문서는 https://tiddlywiki.com/languages/ko-KR/에서 티들리위키의 정적 HTML 표현의 일부입니다

match Operator

2023년 7월 11일 오전 8:24
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

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

Examples