I am experimenting with search operator in TW 5.2.1
Does regexp
search mode really works like old regexp
filter operator?
Q1. in https://tiddlywiki.com/ create a tiddler with below wikitext! These two returns different results?
\define rxp() ^[a-z]+$
<$list filter="[!is[system]search:title:regexp<rxp>limit[5]]">
</$list>
---
<$list filter="[!is[system]regexp:title<rxp>limit[5]]">
</$list>
Q2. Why search operator has a caseinsensitive
search-mode with regexp
? why not use (?i)
?
I would appreciate to share your thoughts!