I have 430 HTML files of various organizations, contact us on the web pages, I was provided with these files for extracting letters.
This simple regex code I came up with the detection and detection of emails across all files
\S*@\S*
My problem
I'm trying to select everything except emails, so I can use the Notepad ++ function "Replace everything in all open documents" to delete everything except emails. Is this possible with regular expressions?
Anyway, can I select everything outside of the regular expression above?
source
share