C#提取html中的汉字_.NET_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > .NET > C#提取html中的汉字

C#提取html中的汉字

 2017/11/1 16:12:22  小倔驴  程序员俱乐部  我要评论(0)
  • 摘要:usingSystem.Text.RegularExpressions;privatestringStripHT(stringstrHtml)//从html中提取纯文本{Regexregex=newRegex("<.+?>",RegexOptions.IgnoreCase);stringstrOutput=regex.Replace(strHtml,"");//替换掉"<"和">"之间的内容strOutput=strOutput.Replace("<","")
  • 标签:C#
using System.Text.RegularExpressions;      

 private string StripHT(string strHtml)  //从html中提取纯文本
        {
            Regex regex = new Regex("<.+?>", RegexOptions.IgnoreCase);
            string strOutput = regex.Replace(strHtml, "");//替换掉"<"和">"之间的内容
            strOutput = strOutput.Replace("<", "");
            strOutput = strOutput.Replace(">", "");
            strOutput = strOutput.Replace("&nbsp;", "");
            return strOutput;
        }

 

发表评论
用户名: 匿名