标签: regex text replace find notepad++
Notepad ++中是否有办法将内容中的多个空行折叠为一行?
例如,从中:
Line0 Line1 Line2 Line3 Line4 Line5
到此:
我想在具有“Find In Files”功能的文件夹上运行替换;有没有办法做到这一点?
答案 0 :(得分:2)
[\r\n]{2,}
您可以\n或\n\n替换。请参阅演示。
\n
\n\n
https://regex101.com/r/tD0dU9/12
编辑:
将(?:\r\n){2,}用于notepadd ++
(?:\r\n){2,}