Notepad ++ Delete everything before the line:

I have such a file ...

user@hotmail.com : password

I would like to remove the hotmail address and just save the password without:

Thus, the file will look as follows in a good list.

passwords passwords

+4
source share
1 answer

Use the search and replace option ( CTRL + H ):

Use Regular Expression mode and replace .*: With an empty string.

This will result in a list of passwords separated by lines.

Then, if you want to remove the newlines switch to Extended mode * \ n, \ r ...) and replace \n space. (You may need \r\n , depending on how you saved the file)

+10
source

All Articles