VB.NET
' 入力されたURLを検証
If
System.Text.RegularExpressions.Regex.IsMatch("http://www.yahoo.co.jp", "\As?https?://[-_.!~*'()a-zA-Z0-9;/?:@&=+$,%#]+\z") Then
Console.WriteLine("URL(らしい)")
End If
かんたんプログラミング VisualBasic.NET 基礎編
C#
// 入力されたURLを検証
if
(System.Text.RegularExpressions.Regex.IsMatch(
"http://www.yahoo.co.jp",
@"\As?https?://[-_.!~*'()a-zA-Z0-9;/?:@&=+$,%#]+\z"))
{
Console.WriteLine("URL(らしい)");
}