try        private static void TestRegex02()
        {
            string html = @"<td class=""tbl_stations_content_l"" nowrap>0:30 &nbsp;</td>   
<td  class=""tbl_stations_content"" style=""background-color:#F5F4F3;"">
<img src=""../templates/default/iconsgif/1N.gif"" width=""50"" height=""41""></td>  
<td class=""tbl_stations_content"" width='100%'><b>Clear weather</b><br/><br/></td>    
<td class=""tbl_stations_content_r"">S at 7 Km/h   </td> 
";
            MatchCollection mc = Regex.Matches(html, @"(?<=<td class=""tbl_stations_content_[rl]""[^>]*>)[^<]+");
            foreach (Match m in mc)
            {
                Console.WriteLine(m.Value);
            }
        }结果
0:30 &nbsp;
S at 7 Km/h
我估计我没理解对。你看看先。我理解不对的话你再跟帖。