I have a list like:
asd@asd abcdefgh abcde@fgh ijklmnop
I want to delete all lines without a character @. The result should be:
@
asd@asd abcde@fgh
Can this be done in Notepad ++, and if so, how?
Try to find:
^[^@]*$
and replace with an empty string.
Use search and replace with the following regular expression:
"" ( , ++).
"Bookmark Line" "Regular Expression", ,
" "
@.
" - â " ".