A last name in Hebrew can be either in an English format, which is just a regular combination of letters, like "Smith", "Camp", "Jack" etc, or a combination of two words with a space in the middle, like "Ben David", "Bar Yohay", "Yom Tov". i tried to create a regexp that allows either the first format - a last name that is at least two letters long, or the second one - a last name that is composed of two words, each two or more letters long, with a space in the middle. here is what i came up with:
(^[a-z]{2,}$)|((^[a-z]{2,}$)(^[ ]$)(^[a-z]{2,}$))
(I know it does not allow capital letters) For some reason it does allow names of the first format like Smith and Jerry, but does not allow names of the second one. is there a problem with the formatting of the space in the middle? This should be an easy one for regexp professionals. thanks in advance :)
^and$(beginning and end of string bindings). Your second pattern (in its entirety) should be wrapped in^...$, not around each token. – Brad Christie Dec 20 '12 at 14:24