In a large HTML document, I have multiple lines that look like this. The value 'TEST' can be different. I want to pick up TEST
or whatever else is in its place.
<TD width=300 valign=top><FONT COLOR=800000 size=3>TEST</FONT><BR>
I have this regex:
$regex = "/<FONT COLOR=800000 size=3>[\w.&,\s]*<\/FONT>/";
It picks up all the lines that look like the one I posted above. How can I, instead of the entire line, pick up only TEST.