1. 删除重复行

使用正则表达式替换

首先排序,edit - sort lines, 之后选中 “.*” 选项,在 Find 中输入^(.+)$[\r\n](^\1$[\r\n]{0, 1})+,在 Replace 中输入 \1\n,替换即可

2. 删除空白行

使用正则表达式替换

选中 “.*” 选项,在 Find 中输入\s+$,在 Replace 中留空,替换即可

3. 查找双引号之间的内容(正则)

1
"([^"]*)"