I'm getting (HTTP request) and I'm trying to get certain data out of it by using a regex, for example this part of the HTML:
<tr><th>Continent:</th><td class='trc'>Europe (EU)</td></tr>
How can I get the 'Europe (EU)' out of this?
I've tried this regex:
/<th>Continent:<\/th><td class='trc'>(.+)\s<\/td>/
But this does not work