isMatch如:
System.Text.RegularExpressions.Regex.IsMatch(str, "^(\d{2}\/){2}\d{4}$")
replace如:
System.Text.RegularExpressions.Regex.Replace(str, "(上|下)午", "").Replace(" ", " ").Trim
IgnoreCase如:
System.Text.RegularExpressions.Regex.IsMatch(str, "^[a-z\s]+$", System.Text.RegularExpressions.RegexOptions.IgnoreCase)