Note that as of 0.8.1 operands of =~
and !=~
can also be strings and expressions that result in strings (which will then be converted into a regex), so you should now also be able do things like where name =~ "Performance/" + replace(@page.name, /person\/(.+)/, "$1")
(not tested, but should work)
1 Like