我要匹配这个下面这个大DIV里面所有的IMG 希望高手帮我搞定,我要SRC= 后面全图片的路径, 在这里谢谢拉!!!!
<div class="right">
<!--[if !IE]>商品简介开始<![endif]-->
<div class="Product_Intro">

<!--[if !IE]>商品简介左部开始<![endif]-->
<div class="Product_Name">  这是DIV1内容</div>
<div id="Product_Intro_Left" >
<div id="Product_BigImage" class="jqzoom" onclick = "window.open('http://www.360buy.com/bigimage.aspx?id=148343')"><img  onerror = "this.src='http://www.360buy.com/images/none/none_347.gif'"  alt="LG KF 350 GSM手机 冰激凌时尚手机   粉色" src="http://img10.360buyimg.com/S1/2249/8b07447e-402f-4f6a-8f86-d233a33155f6.jpg" width="349" jqimg="http://img10.360buyimg.com/S0/2249/8b07447e-402f-4f6a-8f86-d233a33155f6.jpg"/>
</div>
<div id="Product_LittleImage"><img  onerror = "this.src='http://www.360buy.com/images/none/none_50.gif'"  alt="LG KF 350 GSM手机 冰激凌时尚手机   粉色" src="http://img10.360buyimg.com/S5/1954/86f924ff-280d-43b4-8742-f895a3224919.jpg" name="1954/86f924ff-280d-43b4-8742-f895a3224919.jpg"/>
</div>
</div><!--Product_Intro_Left结束-->

<!--[if !IE]>商品简介右部开始<![endif]-->
<div id="Product_Intro_Right"><ul class="Pro_baseinfo"></ul>
<div class='Pro_wrap1'>
<div class='SelectItems'><dt>选择版本</dt></div>
<div class='Pro_buttons'>
<div class='Pro_text1'>已选择 <strong>"粉色"</strong>、<strong>"移动定制"</strong></div>
    <img src="http://misc.360buyimg.com/skin/df/i/com/coll.gif" id = "coll148343"  alt="" width="77" height="26" /></div>
    </div>
    <div class="clear"></div>
    <div style="padding:10px 20px 5px;"><a href="#none" class="link_1" onclick="showShipBar(148343)">查询配送方式、运费及送达时间</a><em style="color:green;position:absolute;margin-top:-8px;font-size:11px;">新!</em>
    </div>
    <div id="shipBarPanel" style="display:none;"></div>
        </div><!--[if !IE]>商品简介右部结束<![endif]-->
  </div><!--商品简介开始-->
  
<div id="divService"></div>
<div class="sbox_1">
<div id="Fittings" class="Product_List_S3">
<IMG height=93 src="http://img20.360buyimg.com/ImgUpload/vclistimg/2009111619438016.png" width=132 border=0>
</div>

</div><!--[if !IE]>相关配件结束<![endif]--><!--[if !IE]>商品评价开始<![endif]-->

        <ul class="Tab" id="EFF_PINFO_Option">
        <li id="EFF_PINFO_Option_0" class="curr" onclick="SwitchTab('EFF_PINFO_','0','','S1')"><em>商品介绍</em></li>
        <li id="EFF_PINFO_Option_1" onclick="SwitchTab('EFF_PINFO_','1','','S1')"><em>规格参数</em></li>
        <li id="EFF_PINFO_Option_2" onclick="SwitchTab('EFF_PINFO_','2','','S1')"><em>包装清单</em></li>
        <li id="EFF_PINFO_Option_11" onclick="SwitchTab('EFF_PINFO_','11','','S1')"><em>售后服务</em></li>
                
        </ul>
        
        
<div class="sbox_3" id="EFF_PINFO_Con_0"><P><FONT color=#ee82ee size=4><STRONG>天生惹人爱LG KF350</STRONG></FONT> </P>
<div class="ProInfo"><font color="red"><strong></strong></font></div>
 <div class="State"><h3>京东商城服务承诺:</h3>
  <div class="sbox_4">请您放心购买! </div><h3>售后服务:</h3>
   <div class="sbox_4">请大家谅解!</div>
</div>

   <div class="sbox_3" id="EFF_PINFO_Con_1" style="display: none;">hello</div><!--Product_Detail_Con1 end -->

        <div class="sbox_3" id="EFF_PINFO_Con_2" style="display: none;">请大家谅解!</div>
        </div>
        <div class="sbox_3" id="EFF_PINFO_Con_11" style="display:none;"> 这是售后服务</div>
        
        <!-- 品牌授权-->
            
            
            <!-- 套装-->
<div id="suit"></div>

解决方案 »

  1.   


    Regex regDiv = new Regex(@"(?is)<div[^>]*>(?><div[^>]*>(?<o>)|</div>(?<-o>)|(?:(?!</?div\b).)*)*(?(o)(?!))</div>");
    Regex regImg = new Regex(@"(?i)<img[^>]*?src=(['""]?)(?<src>[^'""\s>]+)\1[^>]*>");
    MatchCollection mcDiv = regDiv.Matches(yourStr);
    foreach (Match mDiv in mcDiv)
    {
        MatchCollection mcImg = regImg.Matches(mDiv.Value);
        foreach (Match mImg in mcImg)
        {
            richTextBox2.Text += mImg.Groups["src"].Value + "\n";
        }
    }
    /*-------输出--------
    http://www.360buy.com/images/none/none_347.gif
    http://www.360buy.com/images/none/none_50.gif
    http://misc.360buyimg.com/skin/df/i/com/coll.gif
    http://img20.360buyimg.com/ImgUpload/vclistimg/2009111619438016.png
    */