Filter löschen
Filter löschen

Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

Checking whether the word in .txt are also in .txt

1 Ansicht (letzte 30 Tage)
Kim
Kim am 24 Feb. 2013
Geschlossen: MATLAB Answer Bot am 20 Aug. 2021
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

Antworten (1)

the cyclist
the cyclist am 24 Feb. 2013
The ismember() command might be helpful.

Diese Frage ist geschlossen.

Community Treasure Hunt

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

Start Hunting!

Translated by