I want to grab the value of a hidden input field in HTML.
<input type='hidden' name='fooId' value='12-3456789-1111111111' />
I want to write a regular expression in Python that will return the value of fooId, given that I know the line in the HTML follows the format
<input type='hidden' name='fooId' value='**[id is here]**' />
Can someone provide an example in Python to parse the HTML for the value?
For this particular case, BeautifulSoup is harder to write than a regex, but it is much more robust… I’m just contributing with the BeautifulSoup example, given that you already know which regexp to use 🙂