gpt4 book ai didi

asp.net-mvc - 如何在正则表达式中忽略大小写?

转载 作者:行者123 更新时间:2023-12-02 00:25:59 24 4
gpt4 key购买 nike

我有一个 asp.net MVC 应用程序。有一个名为 File 的实体,它有一个名为 Name 的属性。

using System.ComponentModel.DataAnnotations;

public class File {
...
[RegularExpression(@"([^.]+[.](jpg|jpeg|gif|png|wpf|doc|docx|xls|xlsx ..., ErrorMessage = "Invali File Name"]
public string Name{ get; set; }
...
}

有一个正则表达式验证器可以检查文件扩展名。有没有一种快速方法可以告诉它忽略扩展名的大小写,而不必显式地将大写变体添加到我的验证表达式中?我需要这个正则表达式验证器用于服务器端和客户端。“(?i)”可以用于服务器端,但在客户端不起作用

最佳答案

我能想到的一种方法是编写自定义验证属性:

public class IgnorecaseRegularExpressionAttribute : RegularExpressionAttribute, IClientValidatable
{
public IgnorecaseRegularExpressionAttribute(string pattern): base("(?i)" + pattern)
{ }

public IEnumerable<ModelClientValidationRule> GetClientValidationRules(ModelMetadata metadata, ControllerContext context)
{
var rule = new ModelClientValidationRule
{
ValidationType = "icregex",
ErrorMessage = ErrorMessage
};
// Remove the (?i) that we added in the pattern as this
// is not necessary for the client validation
rule.ValidationParameters.Add("pattern", Pattern.Substring(4));
yield return rule;
}
}

然后用它装饰你的模型:

[IgnorecaseRegularExpression(@"([^.]+[.](jpg|jpeg|gif|png|wpf|doc|docx|xls|xlsx", ErrorMessage = "Invalid File Name"]
public string Name { get; set; }

最后在客户端写一个适配器:

<script src="@Url.Content("~/Scripts/jquery.validate.js")" type="text/javascript"></script>
<script src="@Url.Content("~/Scripts/jquery.validate.unobtrusive.js")" type="text/javascript"></script>
<script type="text/javascript">
jQuery.validator.unobtrusive.adapters.add('icregex', [ 'pattern' ], function (options) {
options.rules['icregex'] = options.params;
options.messages['icregex'] = options.message;
});

jQuery.validator.addMethod('icregex', function (value, element, params) {
var match;
if (this.optional(element)) {
return true;
}

match = new RegExp(params.pattern, 'i').exec(value);
return (match && (match.index === 0) && (match[0].length === value.length));
}, '');
</script>

@using (Html.BeginForm())
{
@Html.EditorFor(x => x.Name)
@Html.ValidationMessageFor(x => x.Name)
<input type="submit" value="OK" />
}

当然,您可以将客户端规则外部化到单独的 javascript 文件中,这样您就不必在各处重复它。

关于asp.net-mvc - 如何在正则表达式中忽略大小写?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5937174/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com