标题:按网上的例子,但怎么匹配不成功的呢
只看楼主
liaohongchu
Rank: 1
等 级:新手上路
帖 子:133
专家分:0
注 册:2008-4-25
结帖率:78.72%
 问题点数:0 回复次数:0 
按网上的例子,但怎么匹配不成功的呢
string text = "I'vefoundthisamazingURLathttp://www.,andthenfindftp://ftp.
            string pattern = @"b(?<protocol>S+)://(?<address>S+)b";
            MatchCollection mc = Regex.Matches(text,pattern);
            Response.Write("文本中包含的URL地址有:");
            foreach(Match match in mc)
            {
                GroupCollection gc = match.Groups;
                string outputText = "URL:" + match.Value + ";Protocol:" + gc["protocol"].Value + ";Address:" + gc["address"].Value;
                Response.Write(outputText);
            }

都没有匹配到,为空, 哪里不对了
搜索更多相关主题的帖子: protocol address 网上 
2011-04-13 09:05



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-336491-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.684270 second(s), 7 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved