从数千行中查找空白行

时间:2013-08-21 11:19:44

标签: regex notepad ultraedit

我有大约200万行需要找到所有空行。

AKRAM          AHMED
SSYED          Aakram     ahmed
(need to find this empty row)
james          hetfield     metallica

2 个答案:

答案 0 :(得分:1)

搜索此正则表达式:\\n\s*\\n

它将搜索仅包含空格或无空格的行。

答案 1 :(得分:0)

/^\s*$/ #will match only line containing spaces or nothing.