我想從字符串INCLUDE中刪除所有引號嵌套引號。使用正則表達式刪除所有報價
它並不適用於嵌套qoutes:
preg_replace("/\[quote(.*?)\](.*?)\[\/quote\]/i","", $text);
這個工程的類似:
[quote=admin]Welcome to RegExr 0.3b, an intuitive tool for learning, writing, and testing Regular Expressions. Key features include: [/quote]
但不適用於:
[quote=admin]Welcome to RegExr 0.3b, [quote] an intuitive tool for learning, [/quote] writing, and testing Regular Expressions. Key features include: [/quote]
想刪除所有qoute塊
沒有。 「[quote = admin]歡迎使用RegExr 0.3b,這是一個直觀的學習,編寫和測試正則表達式的工具。主要功能包括:[/ quote]」但不適用於:「[quote = admin]歡迎來到RegExr 0.3b,[quote]一個學習,[/ quote]寫作和測試正則表達式的直觀工具。主要功能包括:[ – m3hdi
]請更清楚你期待的結果 – Thorsten
我只想從字符串中刪除包含嵌套的內容的所有引用塊。 (第一篇文章用例子更新) – m3hdi