是这样的 我想已流的方式读出html保存到 strResult 在html里找到所有和已strurlmiddle开头已>结尾的字符串
程序如下 调式的时候都有值 strmiddle和 strresult
把调式的strmiddle手工在strResult可以找到11个 符合的字符串 但是程序找不到 
应该是正则表达式不对了 
我是用C# 开发 winform
String pattern= "" + strurlmiddle + "[^>]*/";
Regex r=new Regex(pattern,RegexOptions.IgnoreCase | RegexOptions.Compiled);

MatchCollection matches=r.Matches(strResult);
Console.WriteLine("Number of groups found = " + matches.Count); 
foreach( Match m in matches)
{
string sv = m.Groups[1].Value;
}