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

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

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

2019-11-14 09:35: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;        }    }}
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 张掖市| 临颍县| 三穗县| 陈巴尔虎旗| 巫山县| 景洪市| 永仁县| 贵定县| 德令哈市| 新密市| 都江堰市| 锡林浩特市| 吴川市| 巢湖市| 抚松县| 顺义区| 黑水县| 龙南县| 黎城县| 焦作市| 仙桃市| 柳林县| 丰顺县| 红安县| 维西| 鞍山市| 文成县| 许昌县| 武义县| 台州市| 达日县| 隆昌县| 富平县| 绵阳市| 蛟河市| 五河县| 扎兰屯市| 合山市| 九江市| 沐川县| 贵州省|