THE FORUM IS IN READ-ONLY MODE
This forum is in read-only mode. The new forum is live at https://discourse.openbullet.dev and registrations are open!
[HELP ] Regex to get email:pass from random data
-
the closest i can get was regexr.com/50gj7
i know to match emails only i can use(\b[A-Za-z0-9._%+-][email protected][A-Za-z0-9.-]+\.[A-Za-z]{2,4}\b)
but cant get email pass
-
See if this work and let me know
(\b[A-Za-z0-9._%+-][email protected][A-Za-z0-9.-]+\.[A-Za-z]{2,4}\b:[A-Za-z0-9]\w+)
-
Thanks worked after a little tweaking
-
@MadmanDev Try this one, I tested on your ei. , also I added a few more special characters just in case, maybe is not the best way but at least work
(\b[A-Za-z0-9._%+-][email protected][A-Za-z0-9.-]+\.[A-Za-z]{2,4}\b:[^"\r\s]*)