hello. I have this line.
1 2 3 4 5 6 7
And if I want to look like this
1
2
3
4
5
6
7
I use this regex:
Find: (select all spaces between words)
[^\S\r\n]+
Replace by:
\r (or \n)
BUT, how can I add one single new line after “1 2 3 4 5 6 7” ?