s00ny5 0 Posted November 2, 2017 Report Share Posted November 2, 2017 Hello guys, I dont understand very well this regex so I ask for some help if posible. I got this input : <input type="hidden" value="12345" name="name1"> and I want to extract the value 12345 How can I do this ? Regards Quote Link to post Share on other sites
pash 504 Posted November 2, 2017 Report Share Posted November 2, 2017 use (?<=value=")\d+(?=") Quote Link to post Share on other sites
fastlinks 16 Posted February 21, 2019 Report Share Posted February 21, 2019 (?<=value\=\").*?(?=\") (?<=value\=\")\w+(?=\") (?<=value\=\")\d{2,8} Quote Link to post Share on other sites
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.