I am reading contains of an HTML page for some details, I'm searching for every occurrence of a string, that string comes withing a tag, I want to read just that string only.
Example:
<a href="http://www.example.com/search?la=en&q=javascript">javascript</a>
<a href="http://www.example.com/search?la=en&q=PHP">PHP</a>
I just want to read every occurrence of tags TEXT on the basis of href tag which must contain this (http://www.example.com/search?la=en&q=).
Any idea?