Ich habe dieses Attribut, das Sie RegexOptions angeben kann. EDIT: Es integriert sich auch mit unauffälliger Validierung. Der Client wird RegexOptions.Multiline und RegexOptions.IgnoreCase nur befolgen, da dies von JavaScript unterstützt wird.
[RegularExpressionWithOptions(@"[email protected]\.com", RegexOptions = RegexOptions.IgnoreCase)]
C#
public class RegularExpressionWithOptionsAttribute : RegularExpressionAttribute, IClientValidatable
{
public RegularExpressionWithOptionsAttribute(string pattern) : base(pattern) { }
public RegexOptions RegexOptions { get; set; }
public override bool IsValid(object value)
{
if (string.IsNullOrEmpty(value as string))
return true;
return Regex.IsMatch(value as string, "^" + Pattern + "$", RegexOptions);
}
public IEnumerable<System.Web.Mvc.ModelClientValidationRule> GetClientValidationRules(ModelMetadata metadata, ControllerContext context)
{
var rule = new ModelClientValidationRule
{
ErrorMessage = FormatErrorMessage(metadata.DisplayName),
ValidationType = "regexwithoptions"
};
rule.ValidationParameters["pattern"] = Pattern;
string flags = "";
if ((RegexOptions & RegexOptions.Multiline) == RegexOptions.Multiline)
flags += "m";
if ((RegexOptions & RegexOptions.IgnoreCase) == RegexOptions.IgnoreCase)
flags += "i";
rule.ValidationParameters["flags"] = flags;
yield return rule;
}
}
JavaScript
(function ($) {
$.validator.unobtrusive.adapters.add("regexwithoptions", ["pattern", "flags"], function (options) {
options.messages['regexwithoptions'] = options.message;
options.rules['regexwithoptions'] = options.params;
});
$.validator.addMethod("regexwithoptions", function (value, element, params) {
var match;
if (this.optional(element)) {
return true;
}
var reg = new RegExp(params.pattern, params.flags);
match = reg.exec(value);
return (match && (match.index === 0) && (match[0].length === value.length));
});
})(jQuery);
Dieser Artikel von Anthony Stevens hat mir geholfen, diese Arbeit zu erhalten: ASP.NET MVC 3 Unobtrusive Javascript Validation With Custom Validators
ah! Na sicher! ausgezeichnete Antwort - allerdings muss ich fragen: Gibt es eine Möglichkeit, die Groß- und Kleinschreibung zu ignorieren? –
Regex re = neue Regex (@ "^ (?: \ B (?: \ D {5} (?: \ S * - \ s * \ d {5})? | ([A-zA-Z] { 2}) \ d {3} (?: \ S * - \ s * \ 1 \ d {3})?) (?:, \ S *)?) + $ ", RegexOptions.IgnoreCase); // Das ist C# -Code. –
die Frage bezieht sich auf RegularExpressionAttribute und dort müssen Sie nur Zeichenfolge übergeben. Daher können Sie die Regex-Klasse nicht mit Attributen verwenden –