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'd like to use a regular expression to filter culture names (like en-US or pt-BR). Anyone has any idea?

share|improve this question

2 Answers

up vote 7 down vote accepted

Try this:

^[a-z]{2}-[A-Z]{2}$

Or more general (see RFC 4647):

^[A-Za-z]{1,8}(-[A-Za-z0-9]{1,8})*$
share|improve this answer
Thanks! Unfortunately my ASP.NET MVC2 route doesn't work anyway :/ – Rodrigo Waltenberg Sep 9 '10 at 12:35
@Rodrigo Waltenberg: Note that ^ and $ mark the begin and end of the string respectively. Maybe you need that regular expression without these anchors. – Gumbo Sep 9 '10 at 13:12

@Gumbo is right. A test:

In [1]: import re

In [2]: reg = re.compile("^[a-z]{2}-[A-Z]{2}$")

In [3]: url = 'en-US'

In [4]: m = reg.match(url)

the result shows that it Matched.

share|improve this answer
2  
Please refrain from posting non answers like this. If you have an answer, post it. If you are commenting on an answer, post a comment on that answer. – Oded Sep 9 '10 at 12:58
Humble apologies. I will take care in future. Thanks. :) – Tauquir Sep 23 '10 at 6:59

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.