首页 > 编程 > .NET > 正文

c#中过滤html的正则表达式

2024-07-10 13:14:04
字体:
来源:转载
供稿:网友
TempContent 表示包含有html的字符串; 
TempContent = System.Text.RegularExpressions.Regex.Replace(TempContent,"<[^>]+>","");至少一个 
TempContent = System.Text.RegularExpressions.Regex.Replace(TempContent,"<[^>]*>","");任意个 
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表