item1<br>item2<br>item3<br>item4<br>item5
How can I get the text between each <br> and <br>? I tried with preg_match_all and the following regex but it doesn't show all the results.
`<br>(.*)<br> `Usi
Thanks in advance!
How can I get the text between each Thanks in advance! |
|||
|
Assuming the input data is close to what you said, this will give you array with all the pieces in:
|
|||||
|
|
use explode with |
|||
|
|
|
If your data follows that pattern, use the explode function (documentation). The code would look like this:
That would return
In addition, there is a new parameter where you can pass limits....
That would return
|
|||
|
|
explode()on<br>. – Brad Apr 18 '12 at 20:56</br>. – Jack Apr 18 '12 at 20:58