MATLAB怎么将txt的数据读取,txt里面含有数字和字符串。
2个回答
展开全部
如果这个很长的字符串包含空格,那么读入是应该加空格辨认,不要因为空格把字符串拆散了。
假设你的这个文本文件是
myfile.txt
具体操作如下:
cell_string=textread('myfile.txt','%s','whitespace','');
如果没有空格,可以去掉空格辨认如下
cell_string=textread('myfile.txt','%s');
然后是读取第n到第n+10个字符
n=?;
%这里n填入你需要的数值
string_s=cell_string{1};
%将读取的字符串从cell里存到字符串
%string_s里面
a=string_s(n:n+10);
b=string_s(n+1:n+1+10);
假设你的这个文本文件是
myfile.txt
具体操作如下:
cell_string=textread('myfile.txt','%s','whitespace','');
如果没有空格,可以去掉空格辨认如下
cell_string=textread('myfile.txt','%s');
然后是读取第n到第n+10个字符
n=?;
%这里n填入你需要的数值
string_s=cell_string{1};
%将读取的字符串从cell里存到字符串
%string_s里面
a=string_s(n:n+10);
b=string_s(n+1:n+1+10);
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询