public bool validateName(str _name)
{
System.Text.RegularExpressions.Match regExMatch;
bool isValid;
// other characters used in the regular expression are part of regex syntax.
regExMatch = System.Text.RegularExpressions.Regex::Match(_name, @’^[^<>:"/\\|?*]*$’);
// return true if name matches the criteria otherwise return false
isValid = regExMatch.get_Success();
return isValid;
}
No comments:
Post a Comment