How to convert row to column in notepad++

牧云@^-^@ 提交于 2020-01-02 05:25:14

问题


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



来源:https://stackoverflow.com/questions/29259799/how-to-convert-row-to-column-in-notepad

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!