我想使用 php preg_split 通过以下字符串拆分一些文本:
<hr style="text-align: justify;"> or
<hr> or
<hr style="other style here">
例如像这样的文字:"text 1<hr>text 2<hr style="other style here">text 3
应该给我:
array
[0] text 1
[1] text 2
[2] text 3
试图找出正则表达式,但这对我来说太难了:/