I need a way to load an HTML file from a server, read the file, then parse it so that that extracts a number from inside two HTML tags.
This is the setup.....
<a HREF="/tracker/161242">3873</a>
I need to get this <a HREF="/tracker/161242">XXXXXXX</a>
X being a number.
The parsing must be able to find numbers in between those two tags no matter how big the number is.
Can anyone help me? I have never created a parsing engine.