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

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

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

2019-11-14 09:24:53
字體:
來源:轉載
供稿:網友
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;        }    }}
上一篇:ssh 常見面試題

下一篇:LeetCode | GrayCode

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 成都市| 浮梁县| 莆田市| 育儿| 安康市| 梁河县| 卓资县| 隆回县| 土默特右旗| 德钦县| 独山县| 岚皋县| 深圳市| 罗田县| 江川县| 固始县| 东海县| 门头沟区| 射阳县| 千阳县| 东港市| 彩票| 即墨市| 库车县| 咸丰县| 综艺| 东辽县| 施秉县| 玛多县| 饶阳县| 祁门县| 高要市| 吉木萨尔县| 宣武区| 靖边县| 盐源县| 新余市| 宽城| 封丘县| 张北县| 沂南县|