I would like to catch all "dev" tags and their respective content, through php preg_match_all()
but can't get the nested ones.
data:
<dev>aaa</dev>
<dev>bbb</dev>
<dev>
ccc
<dev>ddd</dev>
</dev>
my expression so far:
|<dev>(.*)</dev>|Uis
thanks, for your help, b.