void FormatHtml(CString &str)

来源:互联网 发布:徐娇的淘宝店叫什么 编辑:程序博客网 时间:2024/05/16 17:45
void FormatHtml(CString &str)
{
 CString tmp(str);
 int index = -1;
 int i=0;
 while (index < str.GetLength())
 {
  index ++;
  index = str.Find(">", index);
  if (index == -1)
   break;
  if (str.GetAt(index + 1) == '<')
   continue;
  tmp.Insert(index+1 + i*2, "/r/n");
  i++;
 }
 str = tmp;
 index = -1;
 i=0;
 while (index < str.GetLength())
 {
  index ++;
  index = str.Find("<", index);
  if (index == -1)
   break;
  tmp.Insert(index + i*2, "/r/n");
  i++;
 }
 str = tmp;
}