在asp中使用正则表达式删除样式属性

发布于 2025-01-06 17:20:38 字数 537 浏览 1 评论 0原文

如何在asp中使用正则表达式从任何标签中删除样式属性?

from:

<div style="margin-top:10px;">test</div>

to:

<div>test</div>



Set objRegExp = New regexp
objRegExp.Pattern = "/style\s*=\s*(\'|').+(\'|')/i"
objRegExp.IgnoreCase = True
objRegExp.Global = True
Set resp = objRegExp.Execute(strWordHTML)
For Each respItem In resp
    strWordHTML= replace(strWordHTML,respItem.Value,"")
Next
Set resp = Nothing
Set objRegExp = Nothing

已解决*

(\sstyle=['""][^'""]+?['""])

How can i remove style attribute from any tag with regex in asp?

from:

<div style="margin-top:10px;">test</div>

to:

<div>test</div>



Set objRegExp = New regexp
objRegExp.Pattern = "/style\s*=\s*(\'|').+(\'|')/i"
objRegExp.IgnoreCase = True
objRegExp.Global = True
Set resp = objRegExp.Execute(strWordHTML)
For Each respItem In resp
    strWordHTML= replace(strWordHTML,respItem.Value,"")
Next
Set resp = Nothing
Set objRegExp = Nothing

solved *

(\sstyle=['""][^'""]+?['""])

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

混吃等死 2025-01-13 17:20:38

不使用正则表达式且未经测试,但类似的东西应该可以工作

str = "<div style=""margin-top:10px;"">test</div>"
start = InStr(str, "style")
first = InStr(start, str, """")
second = InStr(first, str, """")

result = Mid(str, 1, start - 1) + Mid(str, second + 1)

Not using regex and not tested but something like this should work

str = "<div style=""margin-top:10px;"">test</div>"
start = InStr(str, "style")
first = InStr(start, str, """")
second = InStr(first, str, """")

result = Mid(str, 1, start - 1) + Mid(str, second + 1)
暖心男生 2025-01-13 17:20:38
 dim result = Regex.Replace(HtmlText, "style[^>]*", "")
 dim result = Regex.Replace(HtmlText, "style[^>]*", "")
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文