C#正則表達式獲取html標籤之間的內容

正則表達式獲取<td>和</td>之間的內容 html

string str = @"<td>123/126/130</td><td>186/194</td></tr><tr><td>4</td><td><f>beijing</td><td>T60</td> web

Regex reg = new Regex(@"(?<=<td>)(.*?)(?=</td>)", RegexOptions.IgnoreCase);//[^(<td>))]

MatchCollection mc = reg.Matches(str); 正則表達式

foreach (Match m in mc)
            {
                webtext.Text += m.Value + "\r\n";
            }

spa

參考資料 .net

正則表達式30分鐘入門教程http://www.jb51.net/tools/zhengze.html htm

相關文章
相關標籤/搜索