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
Regular Expression Search
- aebrown
- Community Administrator
- Posts: 15155
- Joined: Tue Nov 27, 2007 8:48 pm
- Location: Draper, Utah
Re: Regular Expression Search
I really doubt that the back-end database has regex support.StevenTomer wrote: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.
In addition to the basic wildcard searching you mentioned, FamilySearch has built-in support for matching based on the sounds of names and similar roots. For example, searching for "Smith" might match "Schmidt"; searching for "Paul" might match "Pablo"; etc. Those kinds of searches aren't reasonably done with a regex, but are much more useful for the population at large.StevenTomer wrote:I know you can use the wild cards * and ?, but this is insufficient in many circumstances.
I'm a big fan of regex in many situations, but I doubt that FamilySearch would implement this rather technical searching option. Nonetheless, you are certainly welcome to use the Feedback link (located at the bottom of most pages on FamilySearch.org) to make your suggestion. No decision maker is likely to see your post here.