D
Deleted member 283687
Guest
Hi guys any idea how to convert emailassword to email only i dont need password field i have a big list want to convert this to email only ,if you know how to do let me know thanks
Hi guys any idea how to convert emailassword to email only i dont need password field i have a big list want to convert this to email only ,if you know how to do let me know thanks
How did you guys learn regexNotepad++
Find/Replace
Select regex
Find: (\b[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,4}\b)
Replace: \r\n$&\r\n
Everything is on Stackoverflow nowadays. If you need to format data, you just type what you want to do in Google and it leads to Stackoverflow, where the result often is Notepad++ and regex. You can format data using complex regex codes without knowing any regex. Nowadays you don't necessarily have to learn it or learn anything, you just need to know the right keywords to use in Google and voila.How did you guys learn regex
I once found this EXACT regex for extracting Amazon ASINs from URLs but have never been lucky again. The ones I get all need modifications and I suckEverything is on Stackoverflow nowadays. If you need to format data, you just type what you want to do in Google and it leads to Stackoverflow, where the result often is Notepad++ and regex. You can format data using complex regex codes without knowing any regex. Nowadays you don't necessarily have to learn it or learn anything, you just need to know the right keywords to use in Google and voila.