Funktion zum überprüfen einer Url
public static bool IsValidUrl(String url)
{
return Regex.IsMatch(url, @"^(http|https|ftp|)\://|[a-zA-Z0-9\-\.]+\.[a-zA-Z](:[a-zA-Z0-9]*)?/?([a-zA-Z0-9\-\._\?\,\'/\\\+&%\$#\=~])*[^\.\,\)\(\s]$");
}
3 Kommentare zum Snippet