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.
我有两个 JS RegExes/\?(?!xml)/ig可以寻找任何?后面没有字符串“xml”和另一个/\?(?!>)/ig寻找?后面没有“>”。
/\?(?!xml)/ig
/\?(?!>)/ig
如何将两者组合成一个正则表达式?
关于什么:
/\?(?!(xml|>))/gi
编辑:无论如何,请考虑使用解析器而不是 RegExp 正确解析您的 XML。