txt looks normal on Linux but weird on Windows. WHY?

2 visualizaciones (últimos 30 días)
Alex
Alex el 24 de Jun. de 2013
Comentada: Stephen23 el 5 de Mzo. de 2022
I created txt. file using fopen, fwrite and fclose running MATLAB on Linux. However, the lines are mixed up when opening the file on Windows. Is there any work around? I need to be able to work with the txt. file on both WIndows and Linux.
  1 comentario
Titus Edelhofer
Titus Edelhofer el 24 de Jun. de 2013
What do you mean by mixed up? Wrong order? Or no line breaks?

Iniciar sesión para comentar.

Respuesta aceptada

Walter Roberson
Walter Roberson el 24 de Jun. de 2013
On the Linux side, each place that you currently write out '\n', change it to '\r\n'. That is, instead of char(10) use char([13 10])

Más respuestas (1)

Jan
Jan el 24 de Jun. de 2013
What does "opening the file in Windows" exactly mean? While all editors I know, even vi, XEmacs on Windows, MS Word Alpha on my old MacOS-8 computer and the preview on LCD of the fancy Ricoh printer handle Linux/Windows linebreaks correctly, Window's Notepad fails. If you mean this limitations of Notepad, I share your curiosity: Why does Microsoft ships such a bad program with Windows?
Btw. I did not test this in Windows8 yet.

Categorías

Más información sobre Environment and Settings en Help Center y File Exchange.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by