4

I have a file like so...

user@hotmail.com:password

I would like to remove the hotmail address and just keep the password with no :

So the file will look like the following in a nice list..

passwords passwords

4

1 回答 1

12

使用查找和替换选项 ( CTRL+ H):

使用正则表达式模式并替换.*:为空字符串。

这将产生一个以行分隔的密码列表。

然后,如果要删除换行符,请切换到Extended *\n, \r ...)模式并替换\n为空格。(您可能需要\r\n取决于您保存文件的方式)

于 2012-12-30T13:00:29.107 回答