Hi!
I have text file with binary strings in lines, like this:
000101 110100 010100
Now what i would like to do is to insert tab between every character to make it look like this:
0 0 0 1 0 1 1 1 0 1 0 0 0 1 0 1 0 0
I could not find the sintax for replacing any character with the same character.
Any ideas?
Thanks very much.
find: ([01]) replace: \1\t
that ought to do it (regex)
Hi!
I have text file with binary strings in lines, like this:
000101
110100
010100
Now what i would like to do is to insert tab between every character to make it look like this:
0 0 0 1 0 1
1 1 0 1 0 0
0 1 0 1 0 0
I could not find the sintax for replacing any character with the same character.
Any ideas?
Thanks very much.
find: ([01])
replace: \1\t
that ought to do it (regex)