Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我必须做一个正则表达式来旋转内容。我已经有一个在嵌套旋转上运行良好的正则表达式:
{([^{}]+?)}
不幸的是,在我的源代码中,由于大括号,我也有匹配的 CSS 代码。
像这样(可以有几个样式标签):
<style> #test a{ color:red; font-size:13px; font-family:Arial; } </style>
因此,我需要使用单个 REGEX 排除所有这些样式标记和旋转内容。
有任何想法吗?提前谢谢