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.
我需要一个正则表达式来帮助我关闭<br>标签以符合xhtml标准。在我的 htmlbr中并不总是出现empty,所以regex必须考虑到它。在此先感谢您的帮助。
<br>
xhtml
br
empty
regex
寻找这种模式
(\<br[^\>]*)(\/)?(\>)
并用这个替换
$1/$3
根据您可能需要使用的引擎,\1/\2而不是$1/$3在替换字符串中。
\1/\2
正则表达式也可能看起来更简单一些:
代替
/<br.*?>/i
和
<br\/>