I have a list of some data which is in this format for example
word1 word2 word3
word4 word5
word6 word7 word8 word9
but I want to split it all up so that each word is in new line so it would become like:
word1
word2
word3
word4
word5
word6
word7
word8
word9
the blank space between the words is perfect seperator which could be used in search&replace but Not sure of what would the code be in notepad++ regex search?
Thanks