fprintf to word file with red text

조회 수: 15 (최근 30일)
Tyler Murray
Tyler Murray 2016년 10월 20일
댓글: Jan 2016년 10월 22일
I am using fprintf to write to a text file. Since a text file only displays plain text I was looking to see about printing to Microsoft word and putting failed text in red. I know you can do fprintf(2, 'string') and the text will appear red in the command window. But when you write to a specific file such as MyFile, fprintf(2, MyFile, 'string') errors out. Is there a certain format to do this? Thanks.
  댓글 수: 2
Chaya N
Chaya N 2016년 10월 20일
편집: Chaya N 2016년 10월 20일
Try an excel file instead(?)
While you may not be able to write in color into your file, you could probably add an extra comments column (with 'o' for successful and 'x' for failed data) or always mark it up in color later.
Chaya N
Chaya N 2016년 10월 21일
I believe the syntax you are using for the fprintf command is wrong. Please look it up here .

댓글을 달려면 로그인하십시오.

답변 (2개)

KSSV
KSSV 2016년 10월 22일
편집: Jan 2016년 10월 22일
fileID = fopen('myfile.txt','w');
str='I love Matlab';
fprintf(fileID,'%s',str);
fclose(fileID);
  댓글 수: 1
Jan
Jan 2016년 10월 22일
The detail "Microsoft word and putting failed text in red" is missing in this answer.

댓글을 달려면 로그인하십시오.


Walter Roberson
Walter Roberson 2016년 10월 22일
There is no way to output colored text to a plain text file.
Outputting data that Microsoft Word will interpret as indicating something with red text may be practical.
  • you could output RTF (Rich Text Format)
  • you could use ActiveX to connect to Word and give it the necessary commands to insert text, select part of it, and color the selection.

카테고리

Help CenterFile Exchange에서 Text Files에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by