I really don’t understand regex and I also can’t find any regex rule to validate culture codes as: en-GB, en-UK, az-AZ-Cyrl, others.
How can I validate these codes with a regular expression?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can validate with this :
Here is how it works
You can also replace the last non capturing group by
(?:-(?:Cyrl|Latn))?if the only options are Cyrl and Latn