Info
この質問は閉じられています。 編集または回答するには再度開いてください。
Checking whether the word in .txt are also in .txt
1 回表示 (過去 30 日間)
古いコメントを表示
How do you check if the words in the email.txt are in the lists.txt. Also there are some misspelled words in email.txt so I have to print out misspelled words.
Using elementary functions (fopen, fclose, fgetl, ischar, isempty, lower, find, strcmp, intersect, max, length, sort, input, str2num, fprintf, etc..)
% read in the lists.txt
fid=fopen('lists.txt');
while 1
tline = fgetl(fid);
if ~ischar(tline), break, end
disp(tline)
end
fclose(fid);
% read in the email
fid=fopen('email.txt');
while 1
tline = fgetl(fid);
if ~ischar(tline), break, end
disp(tline)
end
1 件のコメント
Walter Roberson
2013 年 2 月 24 日
How does this differ from your earlier question at www.mathworks.co.uk/matlabcentral/answers/64602 ?
回答 (1 件)
この質問は閉じられています。
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!