At the moment we do not support regular expressions per se. What we usually do in these situations is configure a query that looks something like this:
FIND Student WHERE Student.Name CONTAINS ?'Name'. The query will search for students that have any characters entered by a user in their name. You can also configure a more elaborate query:
FIND Student WHERE Student.NAME STARTSWITH ?'Starts with symbols' AND Student.Name ENDSWITH ?'Ends with symbols' AND Student.Name CONTAINS ?'Contains symbols'
When a user runs such a query he will see 3 fields with prompts "Starts with symbols", "Ends with symbols" and "Contains symbols". He can enter anything into any of these fields. If he leaves any of the fields blank, the corresponding condition will be ignored. So it is really like regular expressions for dummies.