J
Jeff Hall
Is there a syntax to Find one string or another?
eg find "Bill" or "Jean", whichever comes first
eg find "Bill" or "Jean", whichever comes first
Jezebel said:No. You'll have to do two searches and compare the results. You can use
regular expressions to search for one of two (or more) characters, so you
could sort of do it by searching for [BJ][ie][la][ln] but that would also
match "Jill", "Bean", "Bell", etc.
No. You'll have to do two searches and compare the results. You can use
regular expressions to search for one of two (or more) characters, so you
could sort of do it by searching for [BJ][ie][la][ln] but that would also
match "Jill", "Bean", "Bell", etc.
Jeff Hall said:Is there a syntax to Find one string or another?
eg find "Bill" or "Jean", whichever comes first
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.