I need to get the value ("abc" in the example below) from an HTML file that looks like this:
<input type="hidden" name="something" value="abc" />
As I learned from other posts, I have to use one of the HTML parsers (not a regular expression). Could you tell me which one to use or show a sample code.
Thank.
source
share