64

I have following regular expression for postal code of Canada.

^[ABCEGHJKLMNPRSTVXY]{1}\d{1}[A-Z]{1} *\d{1}[A-Z]{1}\d{1}$

It is working fine but accepts only Capital letters. I want it work for both capital and small letters.

stema
  • 90,351
  • 20
  • 107
  • 135
khurram
  • 1,010
  • 4
  • 10
  • 23

1 Answers1

144

Just use the option IgnoreCase, see .NET regular Expression Options

So your regex creation could look like this

Regex r = new Regex(@"^[ABCEGHJKLMNPRSTVXY]\d[A-Z] *\d[A-Z]\d$", RegexOptions.IgnoreCase);

I removed also all your {1} because it is superfluous. Every item is per default matched once, no need to state this explicitly.

The other possibility would be to use inline modifiers, when you are not able to set it on the object.

^(?i)[ABCEGHJKLMNPRSTVXY]\d[A-Z] *\d[A-Z]\d$
stema
  • 90,351
  • 20
  • 107
  • 135
  • 9
    Upped the score for the mention of "(?i)" prefix that came in handy when declaring a regular expression in the [RegularExpression("regex-string")] validation attribute in MVC. Thank you! – timmi4sa Jan 18 '21 at 21:58