how can i open and add text to a .txt file?

16 次查看(过去 30 天)
Hello,
I have this List.txt file:
id firstname_lastname department first second third
3033011 Penelope_Cruz Cnm 99 88 77
404402 Gary_Cooper Bio 45 45 45
5055022 Tony_Curtis Dis 23 89 100
606603 Jim_Carrey Mng 100 100 100
I need to open it with matlab and then I need to add this:
12131415 Jack_Nicholson Mat 60 70 80
to List.txt
How can I do this?
also, I can only get the name Jack Nicholson without the underscore.
Thanks

采纳的回答

Image Analyst
Image Analyst 2015-6-3
fid = fopen(filename, 'at');
if fid ~= -1
fprintf(fid, ...... whatever.....
fclose(fid);
end
  6 个评论
Image Analyst
Image Analyst 2015-6-3
Then do
fprintf(fid, '%d %s %s %d %d %d\n', id, name, department, first, second, third);

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Low-Level File I/O 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by