Code Select
(set 'lst '("key ("this one" "that one" "other one")))
(match '(? ("that one")) lst)
Code Select
> (match '(? (* "that one" *)) lst)
;-> ("key" ("this one") ("other one"))
Code Select
(match '(? (* "this one" *)) lst)
(match '(? (* "other one" *)) lst)