Все ответы здесь либо разрешают URL-адреса с другими схемами (например, file://
, ftp://
), либо отклоняют понятные человеку URL-адреса, которые не начинаются с http://
или https://
(например, www.google.com
) , что не очень хорошо при работе с пользовательским вводом .
Вот как я это делаю:
public static bool ValidHttpURL(string s, out Uri resultURI)
{
if (!Regex.IsMatch(s, @"^https?:\/\/", RegexOptions.IgnoreCase))
s = "http://" + s;
if (Uri.TryCreate(s, UriKind.Absolute, out resultURI))
return (resultURI.Scheme == Uri.UriSchemeHttp ||
resultURI.Scheme == Uri.UriSchemeHttps);
return false;
}
Использование:
string[] inputs = new[] {
"https://www.google.com",
"http://www.google.com",
"www.google.com",
"google.com",
"javascript:alert('Hack me!')"
};
foreach (string s in inputs)
{
Uri uriResult;
bool result = ValidHttpURL(s, out uriResult);
Console.WriteLine(result + "\t" + uriResult?.AbsoluteUri);
}
Выход:
True https://www.google.com/
True http://www.google.com/
True http://www.google.com/
True http://google.com/
False