matlab 怎么读出txt字符串

兄弟姐妹们,请教下,matlab 怎么读出txt字符串
最新回答
◇丶素小乐

2024-09-30 11:20:25

clear;
fid=fopen('D:\学习\网站.txt','r');
ss=fgets(fid);
ii=1;
while (length(ss)~=1)
bb(ii,:)=ss(end-19:end-1);
ii=ii+1;
ss=fgets(fid);
end
bb里面存储的就是提取出来的日期时间