怎样用正则表达式获取页面的连接地址?如下:
url 的地址是:http://www.old.com/class/numone.aspx?a=1我想获得URL地址中的“numone”,用正则表达式怎么获得呢? --------------------编程问答-------------------- 现在没.net……lz调试看看能用不
Regex r = new Regex("\/([^<]+).aspx");--------------------编程问答-------------------- /([^/]+).aspx
Match m = r.Match("http://www.old.com/class/numone.aspx?a=1");
if (m.Success)
Console.WriteLine(m.Groups[1].Value); //m.Groups[1].Value是要提取的部分
补充:.NET技术 , C#