C#提取html文本内容

C#提取html文本内容
    public string Tohtml(string zifu)
        {
            string noStyle = zifu.Replace("&quot;", "\"").Replace("&lt;", "<").Replace("&gt;", ">").Replace("&quot;", "\"").Replace("&nbsp;", "");
            noStyle = Regex.Replace(noStyle, @"<[\w\W]*?>", "",
           RegexOptions.IgnoreCase);
            noStyle = Regex.Replace(noStyle, @"\s", "",
          RegexOptions.IgnoreCase);
            return noStyle;
        }
C#提取html文本内容

C#提取html文本内容

上一篇:了解javascript中函数执行顺序


下一篇:intellij idea 12 搭建maven web项目