国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學院 > 開發設計 > 正文

使用C#將HTML文本轉換為普通文本,去掉所有的Html標記

2019-11-14 09:29:46
字體:
來源:轉載
供稿:網友
using System;using System.Collections.Generic;using System.Linq;

using System.Text;

//首先需要導入命名空間using System.Text.RegularExPRessions;namespace WindowsFormsapplication1{   public class Class1    {       /// <summary>       /// 將html文本轉化為 文本內容方法NoHTML       /// </summary>       /// <param name="Htmlstring">HTML文本值</param>       /// <returns></returns>        public string NoHTML(string Htmlstring)        {            //刪除腳本               Htmlstring = Regex.Replace(Htmlstring, @"<script[^>]*?>.*?</script>", "", RegexOptions.IgnoreCase);            //刪除HTML               Htmlstring = Regex.Replace(Htmlstring, @"<(.[^>]*)>", "", RegexOptions.IgnoreCase);            Htmlstring = Regex.Replace(Htmlstring, @"([/r/n])[/s]+", "", RegexOptions.IgnoreCase);            Htmlstring = Regex.Replace(Htmlstring, @"-->", "", RegexOptions.IgnoreCase);            Htmlstring = Regex.Replace(Htmlstring, @"<!--.*", "", RegexOptions.IgnoreCase);            Htmlstring = Regex.Replace(Htmlstring, @"&(quot|#34);", "/", RegexOptions.IgnoreCase);            Htmlstring = Regex.Replace(Htmlstring, @"&(amp|#38);", "&", RegexOptions.IgnoreCase);            Htmlstring = Regex.Replace(Htmlstring, @"&(lt|#60);", "<", RegexOptions.IgnoreCase);            Htmlstring = Regex.Replace(Htmlstring, @"&(gt|#62);", ">", RegexOptions.IgnoreCase);            Htmlstring = Regex.Replace(Htmlstring, @"&(nbsp|#160);", "   ", RegexOptions.IgnoreCase);            Htmlstring = Regex.Replace(Htmlstring, @"&(iexcl|#161);", "/xa1", RegexOptions.IgnoreCase);            Htmlstring = Regex.Replace(Htmlstring, @"&(cent|#162);", "/xa2", RegexOptions.IgnoreCase);            Htmlstring = Regex.Replace(Htmlstring, @"&(pound|#163);", "/xa3", RegexOptions.IgnoreCase);            Htmlstring = Regex.Replace(Htmlstring, @"&(copy|#169);", "/xa9", RegexOptions.IgnoreCase);            Htmlstring = Regex.Replace(Htmlstring, @"&#(/d+);", "", RegexOptions.IgnoreCase);            //替換掉 < 和 > 標記            Htmlstring.Replace("<", "");            Htmlstring.Replace(">", "");            Htmlstring.Replace("/r/n", "");            //返回去掉html標記的字符串            return Htmlstring;        }    }}
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 婺源县| 兴宁市| 六盘水市| 盘山县| 环江| 阜新| 历史| 五大连池市| 辰溪县| 临汾市| 宜阳县| 顺义区| 武汉市| 万山特区| 大港区| 泽州县| 洛南县| 成都市| 兰考县| 宣城市| 新绛县| 安阳县| 久治县| 苍南县| 喀喇| 柳林县| 周宁县| 越西县| 河北省| 天长市| 咸宁市| 天柱县| 兰坪| 凤山县| 仁化县| 长泰县| 顺义区| 枞阳县| 翁源县| 安乡县| 汉源县|