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