在 C# 应用程序中,我想将每个 HTML“字体”标签与“颜色”属性匹配。
我有以下文字:
1<font color="red">2<font color="blue">3</font>4</font>56
我想要一个包含以下项目的 MatchCollection:
[0] <font color="red">234</font>
[1] <font color="blue">3</font>
但是当我使用这段代码时:
Regex.Matches(result, "<font color=\"(.*)\">(.*)</font>");
我得到的 MatchCollection 如下:
[0] <font color="red">2<font color="blue">3</font>4</font>
如何使用 C# 获得我想要的 MatchCollection?
谢谢。