How to replace blank space with new line? in notepad++ regex -


i have list of data in format example

word1 word2 word3

word4 word5

word6 word7 word8 word9

but want split each word in new line become like:

word1

word2

word3

word4

word5

word6

word7

word8

word9

the blank space between words perfect seperator used in search&replace not sure of code in notepad++ regex search?

thanks

entering \s+ on find what field , \n (change \n\n 2 new lines) on replace with field followed replace all transforms:

word1 word2 word3  word4 word5  word6 word7 word8 word9 

onto:

word1 word2 word3 word4 word5 word6 word7 word8 word9 

Comments

Popular posts from this blog

html - Styling progress bar with inline style -

java - Oracle Sql developer error: could not install some modules -

How to use autoclose brackets in Jupyter notebook? -