Function HTMLfilter(fString)

Dim regEx

Set regEx = New RegExp

regEx.Pattern = "<[^>]+>|</[^>]+>"

regEx.Global = true

fString = regEx.Replace(fString,"")

HTMLfilter = fString End Function

转自csdn

相关文章:

  • 2021-10-20
  • 2021-07-25
  • 2022-01-08
  • 2021-05-22
  • 2021-05-28
  • 2022-01-09
  • 2021-09-14
  • 2021-07-28
猜你喜欢
  • 2021-12-11
  • 2021-05-18
  • 2021-10-10
  • 2021-09-12
  • 2022-12-23
相关资源
相似解决方案