Menu

Find/Replace No Character

2008-02-26
2012-11-13
  • Nobody/Anonymous

    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.

     
    • Nobody/Anonymous

      find: ([01])
      replace: \1\t

      that ought to do it (regex)