php - regex - catch string inside multiple tags
- by aSeptik
Hi all guys!
still on regex! ;-)))
Assuming we have an html file with a lot of <tr> rows with same structure like this below, where (.*?) is the content i need to extract!
<tr align= # ><th width= # ><a OnClick="(.*?)"href= # >(.*?)</a><td width= # >(.*?)<td width= # align= # >(.*?)</td></tr>
maybe with a nice preg_match_all() ?
thanks for the time!
Luca Filosofi!