Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have this regex:

  var alphaExp = /^[a-zA-ZåäöÅÄÖ\s]+$/;

This is for a name-field in a form validation.

I need to make it possible to type names like this "Anna-nicole" (note the minus sign). Currently the minus sign causes error.

I need to remake this regex so that a minus sign can be included in the name, preferrably make it so that the name also CANT start with a minus sign, or end with one. Only minus signs between "words, or names" should be allowed.

Anybody know how to do this?

Btw, it is javascript.

Thanks

share|improve this question
You currently allow spaces at both ends - do you want them limited too? And do you want to outlaw 'Nancy - O'Hara' (with the spaces around the dashes), and what about the apostrophe in the surname? – Jonathan Leffler Oct 24 '10 at 19:00
@Jonathan: Yes I would like that as well, now that you mention it. – Anonymous12345 Oct 24 '10 at 19:04

3 Answers

up vote 2 down vote accepted

You have to escape the minus sign using backslash.

var alphaExp = /^[a-zA-ZåäöÅÄÖ\s\-]+$/;

To stop them from using it in the beginning or the end, try something like this:

var alphaExp = /^[a-zA-ZåäöÅÄÖ\s]+[a-zA-ZåäöÅÄÖ\s\-]*[a-zA-ZåäöÅÄÖ\s]+$/;
share|improve this answer
Will this stop them from using minus-sign in beginning or end of the field? – Anonymous12345 Oct 24 '10 at 18:55

In a character class, a plain hyphen/minus needs to be first or last:

/^[-a-zA-ZåäöÅÄÖ\s]+$/
/^[a-zA-ZåäöÅÄÖ\s-]+$/

Negated character classes:

/^[^-a-zA-ZåäöÅÄÖ\s]+$/
/^[^a-zA-ZåäöÅÄÖ\s-]+$/

With close square bracket too, put the square bracket at the front and the hyphen at the end:

/^[]a-zA-ZåäöÅÄÖ\s-]+$/
share|improve this answer
Thanks Jonathan, but should I combine all these? Dont really know what they all mean, just tell me which one to chose please :) – Anonymous12345 Oct 24 '10 at 19:06
1  
@Camran: Choose the one you need - which is probably either of the first two. The second two deal with a negated character class, where the first character after the '[' is '^'. The last is even more esoteric. However, they don't any of them deal with the more complex issues of ensuring that dash only appears between words, not associated with spaces, etc. I'm half-tempted to delete the answer - but the information about where to place dashes in character classes in regular expressions is still useful (I hope), even though it doesn't address the bigger (and much more) complex issues. – Jonathan Leffler Oct 24 '10 at 19:32
/^[a-zA-ZåäöÅÄÖ\s]+[a-zA-ZåäöÅÄÖ\s\-]*[a-zA-ZåäöÅÄÖ\s\]+$/ 

should do it (there being a nasty edge case of a single character name, which this won't match. Is a single character name allowed or not?)

share|improve this answer

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.