如何使用正则表达式删除崇高文本中的新行

how to remove new lines in sublime text using regex

我有一个 text/csv 文件,如下所示:

我想删除所有空白的新行。我该怎么做? 我尝试使用匹配 \n 的正则表达式,但这会将所有行合并为一行。

按下 ctrl + shift + f

并将“\n\n”替换为“\n”

^[\s]*\n

你可以用它,如果你再详细一点我可以帮你找到更准确的正则表达式 有了这个你应该得到任何带有空白字符的行,

干杯

用于 sublime 替换[ctrl+alt+f]
使用正则表达式 \n
替换为 <nothing>