来自数据库的描述具有<p> </p>
个这些标签的数量
所以我的页面占用了大量的空白。
我想删除所有那些空白的
标签,它们将在页面末尾出现
怎么做?
答案 0 :(得分:0)
你可以像这样使用
string[] tags = {" ","<p>","</p>","<br>"};
string str1 = "this is best<br> tag <p> </p> <p> in the asp.net</p>";
foreach (var tag in tags)
{
str1 = str1.Replace(tag, "");
}
答案 1 :(得分:0)
Umbraco CMS中的Tiny MCE存在类似问题。可以在这里找到解决方法: http://our.umbraco.org/forum/using/ui-questions/6266-Empty-p-tag-when-inserting-macro-into-text-editor - 这是针对C#的,但可以帮助您朝着正确的方向发展