举例来说:
This text file has many
double linebreaks, What is the expression
too find these?
答案1
如果使用“正则表达式”搜索模式:
(\r\n\s*$){2,}
将查找所有有 2 个或更多空白行的实例,包括行上仅有空格的实例。
EG 使用替换\r\n
something
something else
another thing
Another
Another thing
成为
something
something else
another thing
Another
Another thing
答案2
按Ctrl+ F,选择扩展搜索模式并搜索\r\n\r\n
。
答案3
要查找双重或更多换行符(并忽略单重换行符),请在扩展模式下搜索以下表达式:
\r\n\r\n\r\n
它将匹配这种情况:
line a
line b
但不是这个:
line a
line b
如果要进行查找替换的话,需要稍微修改一下表达式。