Hi, everyone i have got a problem. I have got a file abc.txt:
13 -- 0 -- 8 -- 0 -- 1
12 -- 5 -- 0 -- 9 -- 0
11 -- 0 -- 0 -- 0 -- 1
everyone number is separate "TAB character -- " (char(9)).
My question is how delete number "0" and replace it a "blank word" 'SPACE' (' ') with keep layout with TABs.
For clarity output should be like that:
13 -- -- 8 -- -- 1
12 -- 5 -- -- 9 --
11 -- -- -- -- 1
Thank you for help.
13 -- 0 -- 8 -- 0 -- 1
12 -- 5 -- 0 -- 9 -- 0
11 -- 0 -- 0 -- 0 -- 1
everyone number is separate "TAB character -- " (char(9)).
My question is how delete number "0" and replace it a "blank word" 'SPACE' (' ') with keep layout with TABs.
For clarity output should be like that:
13 -- -- 8 -- -- 1
12 -- 5 -- -- 9 --
11 -- -- -- -- 1
Thank you for help.