Ok, I'm a bit experienced with PHP and Regex, but this is just over my head. 😕
Here is an example for the original string input:
<td><font face="verdana,sans-serif" size=1> 153277</td>
<td> <a href="/url/"><font face="verdana,sans-serif" size=1 color=#000000>DATA< /a ></td>
I would like to scrap everything except '153277', '/url/', and 'DATA' -- and I would prefer these to be in seperate strings.
For example, $number = "153277", $url = "/url/", and $data = "DATA"
What would be the regex and PHP code to do this? I'm just completely lost.. :glare:
Forgive my newbieness.