正则表达式取HTTP链接

测试文本:

静音合肥美菱BCD-128L冷藏冷冻冰箱 双门冰箱特龙家用电冰箱 送礼    价格:888.00元    最近销售:36件   地址:http:/ w/url.cn/25GRqU ;more :http://url.cn/2727eh
西门子 洗衣机:#晒家大行动#洗衣机放在厨房,有创意吧,哈哈,用的是西门子 WM07X060TI, tmaill链接http://t.cn/zO9l654633uF?地址=:http://t.cn/zOpEsEd

Regex regHttp = new Regex(@"http://[\d\w\.\/\-\?\=]+");
            MatchCollection Httpmatches = regHttp.Matches(strTest);
            int intHttpCharsNum=0;
            foreach (Match item in Httpmatches)
            {
                Console.WriteLine(item.Value);
                intHttpCharsNum = item.Value.Length + intHttpCharsNum;
            }





你可能感兴趣的:(正则表达式,C#高级编程)