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