我正在使用:
[RegularExpression(@"^(""|\[)?[a-zA-Z0-9']{1,125}(""|\])?$")]
确保多行文本框的每一行都正确匹配。但我无法弄清楚如何添加全局标志和多行标志选项。 MVC不可能吗?我还有其他选择吗?
答案 0 :(得分:5)
You can add an inline option to enable MultiLine,无需向属性添加RegexOptions重载。这也确保了表达式也适用于Javascript。
[RegularExpression(@"(?m)^(""|\[)?[a-zA-Z0-9']{1,125}(""|\])?$")]
答案 1 :(得分:1)
它看起来不像RegularExpressionAttribute
支持传递选项,所以这里允许它(编译已检查但未经过测试):
[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Parameter,
AllowMultiple = false)]
public class RegExAttribute : ValidationAttribute
{
public string Pattern { get; set; }
public RegexOptions Options { get; set; }
public RegExAttribute(string pattern) : this(pattern, RegexOptions.None) { }
public RegExAttribute(string pattern, RegexOptions options)
{
Pattern = pattern;
Options = options;
}
public override bool IsValid(object value)
{
return Regex.IsMatch(value.ToString(), Pattern, Options);
}
}
答案 2 :(得分:1)
这就是你如何使用Regex,基本上不依赖于多行标志或属性,而是明确定义正则表达式以允许新行,但需要遵循相同的模式
[RegularExpression(@"^(""|\[)?[a-zA-Z0-9']{1,125}(""|\])?(?:\r?\n(""|\[)?[a-zA-Z0-9']{1,125}(""|\])?)*$")]