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.
我试图选择特定之间的所有小于 (<) 符号<tag>来替换它们。我尝试了几个小时,但我无法让它工作:/
<tag>
例子:
<mytag> the number 1<2! </mytag>
在此示例中,我想选择介于 1 和 2 之间的 <...
你可以使用这样的正则表达式吗?
<(?=[^>\/]*<\/)
正则表达式 101 演示。
基本上,这部分(?=[^>\/]*<\/)确保<后面是<\没有任何>中间部分的部分,因此标签中的开口尖括号将不匹配。
(?=[^>\/]*<\/)
<
<\
>