Hi, Is there any special syntax to get nested div element with unique class name in RegExp in php. Consider I have a syntax like
<div style="demo">
<div class="row">
<div title="[email protected]" class="text">ABC</div>
</div>
<div class="row">
<div title="[email protected]" class="text">PQR</div>
</div></div>
here how can we retrieve all emailids using RegExp and preg_match_all(). Thanks