Attempting Regex

Step Into The Dark

The shadows are waiting. Register now to unlock restricted discussions, share hidden secrets, and whisper in the dark with our elite circle.

Join The Underground

Silentt

Member
Joined
Feb 8, 2019
Messages
76
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:

Code:
<input
 value="2418277d1c3262bb20bbcea8280237a5"
 data-value="1549513731" type="hidden"
 name="token"
This is the regex I have currently:
Code:
("([^"]+)"\s+)
 
Code:
(?<=input\svalue=").+?(?="\sdata-value="\d+"\stype="hidden"\sname="token")

Try this
 
Back
Top