int tmp = allContent.IndexOf("<p> "); //第一次出现的索引值
int l = "<p> ".Length;
allContent = allContent.Remove(tmp, l); //在该索引处删除110
allContent = allContent.Insert(tmp, "<p>"+cr);
int tmp = allContent.IndexOf("<p> "); //第一次出现的索引值
int l = "<p> ".Length;
allContent = allContent.Remove(tmp, l); //在该索引处删除110
allContent = allContent.Insert(tmp, "<p>"+cr);