Silentt 5 So I'm trying to make a config and I have a decent regex but the problem is it's captureing 100 different things instead of the token itself. Here is the pastebin: https://pastebin.com/TAZbEnMg This is what I'm attempting to capture for reference: value="2418277d1c3262bb20bbcea8280237a5" data-value="1549513731" type="hidden" name="token" This is the regex I have currently: ("([^"]+)"\s+) Quote Share this post Link to post Share on other sites
Silentt 5 Bumping because I desperately need help with this <3 Quote Share this post Link to post Share on other sites
DarkAng31 3 (?<=input\svalue=").+?(?="\sdata-value="\d+"\stype="hidden"\sname="token") Try this 1 Quote Share this post Link to post Share on other sites