I'm using this regex code to get the tags but not the value:
(<input type="hidden" name="pt" id="pt" value=")|(" \/>)
From this code:
<input type="hidden" name="pt" id="pt" value="f64b1aadf7baa6e416dbfb6bf95fa031" />
But how would I do it the other way around? Get the value, but not the surrounding tags? So I would only get "f64b1aadf7baa6e416dbfb6bf95fa031" (without the quotes). Thanks.