How to convert row to column in notepad++

2019-05-04 13:11发布

问题:

How can I convert

 testext

to

t
e
s
t
e
x
t

Please note there is no delimiter. Is there any way?

回答1:

Go to Search → Find → Replace (Ctrl+F) and type following:

Find: (.)
Replace: $1\n
SearchMode: Regular Expression
Direction: Down

Then place the caret at the beginning of the text and hit "Replace All".