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