Tab key reading problem
이전 댓글 표시
Good morning,
I'm trying to read in matlab a ".txt" with the following shape
"RechSt.CalculateP_Usage=0¶
RechSt.CalcWithMidTol=0¶
RechSt.ScoringStandard=0¶"
Having a tab key at the end of each line. When I read it with MATLAB it changes to a symbol like � and therefore, when trying to use the saving file in another software, it gives me an error because it doesn't read the symbol � as a tab key (¶).
How could I fix it?
Thanks in advance!
Sergio
댓글 수: 6
Walter Roberson
2019년 10월 29일
Can you attach a sample file (using Attach, not copy and paste), and also show how you are doing the reading?
Sergio Vez
2019년 10월 29일
Walter Roberson
2019년 10월 29일
Everything looks fine to me on my system. I do not observe any problem.
Walter Roberson
2019년 10월 29일
Try changing
fileID = fopen('OUTPUT.txt','wt');
to
fileID = fopen('OUTPUT.txt', 'wt', 'n', 'ISO-8896-1');
It looks to me as if you are getting some UTF-8 encoding happening.
Sergio Vez
2019년 10월 29일
Sergio Vez
2019년 10월 29일
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Standard File Formats에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!