Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to convert column to a row in notepad++

How can I convert

 testext

to

t
e
s
t
e
x
t

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

like image 769
talaa123 Avatar asked Mar 17 '23 15:03

talaa123


1 Answers

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".

like image 193
Binkan Salaryman Avatar answered Mar 24 '23 05:03

Binkan Salaryman