我有这段文字,我正在尝试删除所有内部引号,只保留一个引用级别。引号内的文本包含任何字符,甚至换行符等。这可能使用正则表达式还是我必须编写一个小解析器?
[quote=foo]I really like the movie. [quote=bar]World
War Z[/quote] It's amazing![/quote]
This is my comment.
[quote]Hello, World[/quote]
This is another comment.
[quote]Bye Bye Baby[/quote]
这是我想要的文字:
[quote=foo]I really like the movie. It's amazing![/quote]
This is my comment.
[quote]Hello, World[/quote]
This is another comment.
[quote]Bye Bye Baby[/quote]
这是我在 PHP 中使用的正则表达式:
%\[quote\s*(=[a-zA-Z0-9\-_]*)?\](.*)\[/quote\]%si
我也尝试了这个变体,但它不匹配.
,或者,
我不知道在引用中还能找到什么:
%\[quote\s*(=[a-zA-Z0-9\-_]*)?\]([\w\s]+)\[/quote\]%i
问题出在此处:
(.*)