如何忽略正则表达式中的大小写?
我有一个 ASP.NET RegularExpressionValidator 来检查文件扩展名。 有没有一种快速方法可以告诉它忽略扩展名的大小写,而不必显式地将大写变体添加到我的验证表达式中?
ValidationExpression="([^.]+[.](jpg|jpeg|gif|png|wpf|doc|docx|xls|xlsx ...
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 ...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在服务器端,可以使用“(?i)”,但这在客户端不起作用。 请参阅此处< /a> 了解更多讨论和解决方法。
即“...(?i)(jpg|jpeg|gif|png|wpf|...”
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|..."
在 VisualBasic.NET 中,您可以使用 RegExOptions 来忽略大小写:
In VisualBasic.NET, you can use the RegExOptions to ignore he case:
根据正则表达式选项,这应该有效:
According to the Regular Expression Options, this should work: