首页 > 编程 > ASP > 正文

ASP函数:移除HTML代码

2024-05-04 11:07:17
字体:
来源:转载
供稿:网友

ASP移除所有HTML代码的函数

Function RemoveHTML( strText )
  Dim RegEx
  Set RegEx = New RegExp
  RegEx.Pattern = "<[^>]*>"
  RegEx.Global = True
  RemoveHTML = RegEx.Replace(strText, "")
  RemoveHTML = replace(RemoveHTML," "," ")
End Function

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表