正则表达式匹配<font>属性</font>

时间:2013-10-03 21:03:28

标签: c# html regex

我有一个字符串,其中包含类似的内容;

"<font color=\"Red\">"

我需要一个可以匹配任何颜色的正则表达式。我试过下面的正则表达式没有运气。有人有什么建议吗?

string pattern = "/<font[^>]*>/";
string newTag = Regex.Replace(txt_htmlBody.Text, pattern, "<font color=\"Black\">");

1 个答案:

答案 0 :(得分:5)

C#中的正则表达式不需要像PERL或PHP这样的模式分隔符,因此您需要将模式更改为:

string pattern = "<font[^>]*>";
                  ^         ^
            Notice the removed / from the expression