Blogger Information
Blog 16
fans 0
comment 0
visits 18176
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
Notepad++ 删除空白行的方法
忧郁之子的博客
Original
1483 people have browsed it

今天打开了一个代码文件,发现有好多空行,记得以前看到过可以使用Notepad++删除空行,记录下来分享给大家。

Notepad++ 是我特别喜欢的一款编程工具。在安装后就可以轻松使用了。
Notepad++ 上提供了很多方便的插件以实现更多的扩展,当然自身已经比较强大好用了。
如果你遇到文本中间有大量的空白行的话,那么利用Notepad++ 可以按照以下方式轻松搞定:
方法一(插件处理):
先下载安装插件 TextFX,下载后重新启动下,然后在菜单栏找到 TextFX -> TextFX Edit -> Delete blank lines,即可。
方法二(正则处理):
选择替换,把查找模式设置为正则表达式,在查找框中输入 ^\s+  ,替换框留空,点“全部替换”,即可(先全选)。

方法三、删除空行(不包括有空格类符号的空行) 
1、\r\n转义符替换 
按ctrl+h,跳出搜索替换框,把查找模式定义为扩展(\n,\r…) 
查找目标:\r\n\r\n 
替换为:\r\n

Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!