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).

  1. set search mode extended
  2. for find what, enter \\x00
  3. for replace with, enter \n
  4. hit replace all

replace \x00 new lines

then replace \t tabs, can:

  1. for find what, enter \\t
  2. for replace with, enter \t
  3. hit replace all

replace \t tabs


Comments

Popular posts from this blog

design - Custom Styling Qt Quick Controls -

Unable to remove the www from url on https using .htaccess -