Regular Expression Search
Posted: Sun Jun 11, 2017 9:24 pm
I'd like to be able to use regular expressions to do searching. I'm guessing it's probably allowed by the back-end database, just not by the user interface. I know you can use the wild cards * and ?, but this is insufficient in many circumstances.
Here's a concrete example:
I'm looking for the surname Greenbank including it's variants.
Acceptable are:
Greenbank
Greenbanke
Greenbanck
Greenbanks
Greenback (This is a common mis-indexing of Greenbank)
Not acceptable:
Greenbaum
etc.
So I'm limited to Greenba* (too few) and Greenban*.
I know that regular expressions are not in general use by the novice user, but for a power user, they're amazing. Incidentally, Microsoft Word and Excel have them for searches, so it's not that uncommon.
Thanks,
Steven Tomer
Here's a concrete example:
I'm looking for the surname Greenbank including it's variants.
Acceptable are:
Greenbank
Greenbanke
Greenbanck
Greenbanks
Greenback (This is a common mis-indexing of Greenbank)
Not acceptable:
Greenbaum
etc.
So I'm limited to Greenba* (too few) and Greenban*.
I know that regular expressions are not in general use by the novice user, but for a power user, they're amazing. Incidentally, Microsoft Word and Excel have them for searches, so it's not that uncommon.
Thanks,
Steven Tomer