Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 :)

share|improve this question
Do you know what ^ and $ do? – Tim N Dec 20 '12 at 14:24
That's because you're over zealous with the ^ 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
3  

2 Answers

You can simplify your regex to

^[a-z]{2,}(?: [a-z]{2,})?$
share|improve this answer

You are misusing anchors (^ and $). These match the beginning and ending of the string, respectively. What you actually want is:

(^[a-z]{2,}$)|(^([a-z]{2,})([ ])([a-z]{2,})$)

Further, you can simplify your expression to:

^[a-z]{2,}$|^[a-z]{2,} [a-z]{2,}$

unless you specifically need to capture groups.

Or (so you only need one pair of anchors):

^(?:[a-z]{2,}|[a-z]{2,} [a-z]{2,})$

(?:...) is a non-capturing group, necessary to restrict the scope of the alternation.

share|improve this answer
Can you break the pattern down and comment it so OP has a solution and can learn from it? – Brad Christie Dec 20 '12 at 14:25
1  
@BradChristie - OP seems to understand the use of character classes, alternation, and quantifiers. He seems to have been mistaken about anchors, that's all. I feel it suffices to show that the anchors are necessarily only at the beginning and end. – acheong87 Dec 20 '12 at 14:27
2  
The scope of your anchors is wrong. You need a non-capturing group around the alternations. In fact, you don't need an alternation at all. – Tim Pietzcker Dec 20 '12 at 14:27
1  
@TimPietzcker - You are absolutely right. I edited the solution to, not the way I would have done it, but closer to what the OP started with, to show him the difference. Thank you. – acheong87 Dec 20 '12 at 14:30
Thanks! This helped :) I didn't understand how to use ^ and $ properly. – Htusa Adssad Dec 20 '12 at 14:33

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.