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)
source share