I want to extract from a string which looks like this
Something<p class=text>Description</p>Something
just a "Description". I've tried this p class=text>[^<\/p]*
and this p class=text>[^<]\/p*
but none of that is working. How to achieve that ?
[^<]*`
– revo May 24 '15 at 12:45