Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
给定一个包含新行的文件,使用 Textmate,我如何从文档中删除它们
给定一个文本文件
a b c
我想结束
我会使用正则表达式^\s*$\n来匹配任何空行或仅包含空格字符的行。
^\s*$\n
只需在“查找”框中运行 Replace All,替换框为空即可。
将“\n+”替换为“\n”(确保“正则表达式”复选框已打开)。这仅用一个替换了几个连续的换行符。