public static bool IsValidURL(string strURL) { string regExPattern = @"^^(ht|f)tp(s?)\:\/\/[0-9a-zA-Z]([-.\w]*[0-9a-zA-Z])*(:(0-9)*)*(\/?)([a-zA-Z0-9\-\.\?\,\'\/\\\+&%\$#_=]*)?$"; Regex re = new Regex(regExPattern); return re.IsMatch(strURL); }demo highlight
foo
bar
Demo Quote
Categories:
Tips_And_Tricks
0 comments:
Post a Comment