[Zope] The find tab (Q1959)

Michel Pelletier michel@digicool.com
Thu, 16 Sep 1999 12:33:24 -0400


picasso@videotron.ca wrote:
> 
> Hi,
> 
> Is there a way to use regex or wildcars when using the 'Find' tab for
> looking for ids.

No.  But even better, you can use python expressions:

id != 'bob' (all ids but bob)

id[1] == 'a'  (only ids starting with a)

etc.

-Michel