using System.Text.RegularExpressions;
matchedObject.Success の true または false でマッチしたかどうかを判別し、
マッチした文字列は matchedObject.Groups 配列から取り出します
string Url = "http://google.co.jp/";
Match matchedObject = Regex.Match(Url, @"https?://google(.+)");
if ( matchedObject.Success)
{
var country = matchedObject.Groups[1].Value;
}
using System.Text.RegularExpressions;
if ( Regex.IsMatch("対象文字列", "正規表現") )
{
// マッチしたときの処理
}