excel - Viewing a txt file with row separator "\x00" -
i got program outputs txt column separator "\t" , row separator "\x00" (hex code)
but when open txt ms excel, notepad++, libreoffice, contents put in 1 row.
but want open in either ms excel or libreoffice in "normal" view can edit easily.
i tried find type of buttons in libreoffice change separator couldn't.
i changed encoding of using notepad++ encodings, changing encoding didn't @ least @ notepad++.
how can open file row separator being displayed should?
i want see in multiple rows , edit efficiently.
in notepad++, can perform find , replace (ctrl+h).
- set search mode extended
- for find what, enter \\x00
- for replace with, enter \n
- hit replace all
then replace \t tabs, can:
- for find what, enter \\t
- for replace with, enter \t
- hit replace all
Comments
Post a Comment