Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Transpose function in Notepad++

I have a text file as:

0xC1,0x80,
0x63,0x00,
0x3F,0x80,
0x01,0xA0,

I want output as:

Line1: 0xC1,0x63,0x3F,0x01,
Line2: 0x80,0x00,0x80,0xA0,

How to do this using replace function in Notepad++?

like image 290
user2967899 Avatar asked Dec 15 '22 04:12

user2967899


1 Answers

You can use the below shortcuts to do the transpose in Notepad ++

 Step 1: Ctrl + A: selects all.
 Step 2: Ctrl + J: Transpose the Row you selected
like image 119
Arpan Saini Avatar answered Jan 05 '23 22:01

Arpan Saini