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

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

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

2019-11-14 08:59:10
字體:
來源:轉載
供稿:網友
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;        }    }}
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 焦作市| 保定市| 沅陵县| 呼图壁县| 即墨市| 娄烦县| 莆田市| 富川| 社会| 宣汉县| 鸡泽县| 济宁市| 德清县| 保靖县| 乐东| 祥云县| 正蓝旗| 固安县| 昌江| 龙江县| 大关县| 通化县| 三亚市| 沁源县| 十堰市| 金阳县| 晋城| 崇仁县| 武城县| 沙洋县| 丽江市| 乐山市| 东方市| 河曲县| 桃园县| 梧州市| 贡嘎县| 工布江达县| 鄂托克前旗| 柯坪县| 侯马市|