我想编一个MATLAB程序可以在100条字符串中确定指定字符序列位置的程序。
1个回答
推荐于2016-07-29
展开全部
R=['The problem of computating the eigenvalue and eigenvector of matrix is one of the important problems in the compitation of project.'];
A=['problems in the compitation'];%设指定字符列
n=length(R);
m=length(A);
display(['字符串共有字符' num2str(n)])%显示共有字符n个,n为统计出的字符数
for i=1:n-m+1
if R(i:i+m-1)==A(1:m)
display(['目标在字符串中的起始位置为' num2str(i)])
end
end
A=['problems in the compitation'];%设指定字符列
n=length(R);
m=length(A);
display(['字符串共有字符' num2str(n)])%显示共有字符n个,n为统计出的字符数
for i=1:n-m+1
if R(i:i+m-1)==A(1:m)
display(['目标在字符串中的起始位置为' num2str(i)])
end
end
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询