我有一些以这种格式的数据列表

word1 word2 word3

word4 word5

word6 word7 word8 word9

但我想将其全部拆分,以使每个单词都位于换行符中,因此它将变为:

word1

word2

word3

word4

字5

word6

word7

word8

word9

单词之间的空格是可以在search&replace中使用的完美分隔符,但不确定在notepad++ regex搜索中使用的代码是什么?

谢谢

最佳答案

\s+字段上输入Find what,在\n字段上输入\n\n(更改为Replace With的两行),然后进行Replace All转换:

word1 word2 word3

word4 word5

word6 word7 word8 word9

到:
word1
word2
word3
word4
word5
word6
word7
word8
word9

关于regex - 如何用新行替换空白?在 Notepad++ 正则表达式中,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/36782085/

10-11 08:14