要将下面这段代码过滤掉
1、<p>
&nbsp;</p>
2、 <p>
&nbsp;</p>
现在使用的是下面的方式reg = new Regex("<p>\\s*\\S*</p>");
if (!string.IsNullOrWhiteSpace(reg.Match(Finally).Value))
{
Finally = Finally.Replace(reg.Match(Finally).Value, "");
}
第二段代码就能过滤掉,第一段代码就没有过滤掉,望赐教~