public static class HtmlAttributeValidator{
const bool REGEX_OPTIONS = RegexOptions.WhatGoesHere;
const string VALID_ATTRIBUTE_REGEX = @"What goes here?";
public static bool IsValidHtmlAttributeValue(string attributeValue){
return Regex.Match(attributeValue ?? string.Empty,
VALID_ATTRIBUTE_REGEX,
REGEX_OPTIONS);
}
}