Need help in extracting multiline tag containing multi tag.. Like for example :
<div class="box_update_userdetails_upate">50% discount 4 our members for the items that r put 4 sale.<br />
Send<br />
Join 4sale<br />
9219592195</div>
<div class="box_update_userdetails_upate">Big Offr 4 Our Grp MemBrs:<br />
Jst Add Ur 5 Frns and Gain a Recharge Of 20rs In ur Mob no.<br />
Details<br />
9496360235<br />
addfrn</div>
There may be many
or newline in data. I need to extract anything written between <div class="box_update_userdetails_upate">
and </div>
including all <br />
or except <br />
will do the work too.
I tried using "<div class="box_update_userdetails_upate">(.+?)</div>"
but that doesn't work for all. That way is only working if there is no newline or break tag in between ..