Skip to content

Instantly share code, notes, and snippets.

@jbubriski
Created December 3, 2012 21:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jbubriski/4198259 to your computer and use it in GitHub Desktop.
Save jbubriski/4198259 to your computer and use it in GitHub Desktop.
RegularExpressionMultiMatchAttribute that allows multiple matches for data annotations (ex. w/ ASP.NET MVC)
public class RegularExpressionMultiMatchAttribute : RegularExpressionAttribute
{
public RegularExpressionMultiMatchAttribute(string pattern)
: base(pattern)
{
}
public override bool IsValid(object value)
{
var regex = new Regex(Pattern);
Match match;
if (value != null)
{
match = regex.Match(value.ToString());
}
else
{
match = regex.Match("");
}
return match.Success;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment