zoukankan
html css js c++ java
asp.net如何去掉HTML标记
/**/
///
<summary>
///
去除HTML标记
///
</summary>
///
<param name="NoHTML">
包括HTML的源码
</param>
///
<returns>
已经去除后的文字
</returns>
public
static
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
"
,
""
);
Htmlstring
=
HttpContext.Current.Server.HtmlEncode(Htmlstring).Trim();
return
Htmlstring;
}
/**/
///
提取HTML代码中文字的C#函数
///
<summary>
///
去除HTML标记
///
</summary>
///
<param name="strHtml">
包括HTML的源码
</param>
///
<returns>
已经去除后的文字
</returns>
using
System;
using
System.Text.RegularExpressions;
public
class
StripHTMLTest
{
public
static
void
Main()
{
string
s
=
StripHTML(
"
<HTML><HEAD><TITLE>中国石龙信息平台</TITLE></HEAD><BODY>faddfs龙信息平台</BODY></HTML>
"
);
Console.WriteLine(s);
}
public
static
string
StripHTML(
string
strHtml)
{
string
[] aryReg
=
{
@"
<script[^>]*?>.*?</script>
"
,
@"
<(\/\s*)?!?((\w+:)?\w+)(\w+(\s*=?\s*(([""'])(\\[""'tbnr]|[^\7])*?\7|\w+)|.{0})|\s)*?(\/\s*)?>
"
,
@"
([\r\n])[\s]+
"
,
@"
&(quot|#34);
"
,
@"
&(amp|#38);
"
,
@"
&(lt|#60);
"
,
@"
&(gt|#62);
"
,
@"
&(nbsp|#160);
"
,
@"
&(iexcl|#161);
"
,
@"
&(cent|#162);
"
,
@"
&(pound|#163);
"
,
@"
&(copy|#169);
"
,
@"
&#(\d+);
"
,
@"
-->
"
,
@"
<!--.*\n
"
}
;
string
[] aryRep
=
{
""
,
""
,
""
,
"
\
""
,
"
&
"
,
"
<
"
,
"
>
"
,
"
"
,
"
\xa1
"
,
//
chr(161),
"
\xa2
"
,
//
chr(162),
"
\xa3
"
,
//
chr(163),
"
\xa9
"
,
//
chr(169),
""
,
"
\r\n
"
,
""
}
;
string
newReg
=
aryReg[
0
];
string
strOutput
=
strHtml;
for
(
int
i
=
0
;i
<
aryReg.Length;i
++
)
{
Regex regex
=
new
Regex(aryReg[i],RegexOptions.IgnoreCase);
strOutput
=
regex.Replace(strOutput,aryRep[i]);
}
strOutput.Replace(
"
<
"
,
""
);
strOutput.Replace(
"
>
"
,
""
);
strOutput.Replace(
"
\r\n
"
,
""
);
return
strOutput;
}
}
写一个静态方法
移除HTML标签
#region
移除HTML标签
/**/
///
<summary>
///
移除HTML标签
///
</summary>
///
<param name="HTMLStr">
HTMLStr
</param>
public
static
string
ParseTags(
string
HTMLStr)
{
return
System.Text.RegularExpressions.Regex.Replace(HTMLStr,
"
<[^>]*>
"
,
""
);
}
#endregion
取出文本中的图片地址
#region
取出文本中的图片地址
/**/
///
<summary>
///
取出文本中的图片地址
///
</summary>
///
<param name="HTMLStr">
HTMLStr
</param>
public
static
string
GetImgUrl(
string
HTMLStr)
{
string
str
=
string
.Empty;
string
sPattern
=
@"
^<img\s+[^>]*>
"
;
Regex r
=
new
Regex(
@"
<img\s+[^>]*\s*src\s*=\s*([']?)(?<url>\S+)'?[^>]*>
"
,
RegexOptions.Compiled);
Match m
=
r.Match(HTMLStr.ToLower());
if
(m.Success)
str
=
m.Result(
"
${url}
"
);
return
str;
}
#endregion
查看全文
相关阅读:
Oracle分页问题
win10系统vs2008环境wince项目无法创建问题
工作满十年了
让Vs2013 完美支持EF6.1 Code First with Oracle 2015年12月24日更新
Oracle DMP 操作笔记之根据DMP逆向推导出导出的表空间名称
【转】如何在 Eclipse 中進行 TFS 的版本管控
【转】什麼是 Team Explorer Everywhere 2010 ?TFS 專用的 Eclipse 整合套件的安裝與設定
[转]有关USES_CONVERSION
[转]使用VC/MFC创建一个线程池
IT男的”幸福”生活
原文地址:https://www.cnblogs.com/goody9807/p/961195.html
最新文章
python:面向对象程序设计进阶(一):控制属性的三种方式
python:面向对象程序设计及property装饰器
Django与Ajax
django_模型层
并发编程总结
django的模板层
django的视图层
django的路由层URLconf
django简介
http协议
热门文章
web框架
web应用
Intellij IDEA 安装与激活
老夫决定把这九年的编程经验传授给你。
JavaWeb项目获取绝对路径basePath
微信公众平台开发——微信授权登录(OAuth2.0)
第三方登录:微信扫码登录(OAuth2.0)
Spring Security 与 OAuth2 介绍
lombok使用基础教程
Oracle体系结构
Copyright © 2011-2022 走看看