我嘗試後續串切HTML標籤和包裝HTML標籤再次部件/ 1
<p>
string
<b>
bold
<em>italic string</em>
also(bold)
</b>
</p>
轉換爲這個字符串
<p>
string
</p> <!--------------------------------------- insert -->
<b>
bold
</b> <!------------------------------------ insert -->
<em>italic string</em>
<b> <!------------------------------------ insert -->
also(bold)
</b>
<p> <!---------------------------------------- insert -->
</p>
我知道這是不合法的HTML,但我需要這個爲我的項目。 ...正則表達式是一種好方法,但我只是沒有解決。
整個謝靈運將是動態的,
我的想法是,正則表達式
// open tag close
$regex = '<(.*?)>(.*?)</(.*?)>'
if ($1 != $3) {
$newString = <$1>$2</$1></$3>
}
但不工作!
......究竟是什麼問題? – Rogue
這是一樣的字符串總是還是動態的? – Vishnu
@Rogue我需要在打開或關閉一個antother之前插入動態「TAG-Breakpoint」TAG 要被轉換的字符串istdynamic –