I have an ASP.NET RegularExpressionValidator that checks file extensions. Is there a quick way I can tell it to ignore the case of the extension without having to explicitly add the upper case variants to my validation expression?

ValidationExpression="([^.]+[.](jpg|jpeg|gif|png|wpf|doc|docx|xls|xlsx ...
link|improve this question

61% accept rate
feedback

4 Answers

up vote 13 down vote accepted

Server-side, "(?i)" can be used, but this doesn't work client-side. See here for more discussion and workaround.

i.e. "...(?i)(jpg|jpeg|gif|png|wpf|..."

link|improve this answer
I can't reach that link. I actually get an 403.6... should I get worried? – PEZ Jan 11 '09 at 13:15
@PEZ: retried, works fine... but there are plenty of others - just search +RegularExpressionValidator +IgnoreCase – Marc Gravell Jan 11 '09 at 13:17
@PEZ - I'll remove the // that might confuse some browsers; sorry... – Marc Gravell Jan 11 '09 at 13:18
I've tried that myself already. Doesn't help. It seems the server really has a problem with my IP! – PEZ Jan 11 '09 at 13:23
The link in this answer is broken now. If someone has a good link to replace it with, please do so! – Highly Irregular Dec 13 '11 at 4:35
feedback

You can get rid of some of the duplication in that regex:

(jpe?g|gif|png|wpf|docx?|xlsx? ...
link|improve this answer
feedback

In VisualBasic.NET, you can use the RegExOptions to ignore he case:

Dim RegexObj As New Regex("([^.]+[.](jpg|jpeg|gif))", RegexOptions.IgnoreCase)
link|improve this answer
Again, this doesn't work with RegularExpressionValidator – Marc Gravell Jan 11 '09 at 13:13
Yes, sorry, saw it too late. I should read the questions more carefully. – Sebastian Dietz Jan 11 '09 at 13:25
feedback

According to the Regular Expression Options, this should work:

// Added LowerCase i:
ValidationExpression="(?i:[^.]+[.](jpg|jpeg|gif|png|wpf|doc|docx|xls|xlsx ...
link|improve this answer
as long as it is server-side; I don't think it works client-side – Marc Gravell Jan 11 '09 at 13:16
feedback

Your Answer

 
or
required, but never shown

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