I would like to extract the value of some form tags. The value is unknown to me at runtime.
I have found several threads that come close, but they all focus on HTML parsing and scraping.
I already have the HTML source and the names of the form fields that I need the value for.
example:
<input type="hidden" name="currentRackU" id="currentRackU" value="11">
I can use a regex to get to 'id="currentRackU" value=' but I now need to get the next characters until the closing quotes.