111,117
社区成员




string text = "http://www.google.cn/search?q=江苏省2007年重点建设项目&ss=22";
string pt = @"[qQ]=([^&\?]*)";
System.Text.RegularExpressions.Match m=System.Text.RegularExpressions.Regex.Match(text, pt);
if(m.Success) {
Response.Write(m.ToString()+"<br>");
Response.Write(m.Groups["qr"].ToString()+"<br>");
}