how to search for a string inside a file in matlab

8 Ansichten (letzte 30 Tage)
lafnath p
lafnath p am 22 Okt. 2016
Kommentiert: Jan am 26 Okt. 2016
to search a word inside a .dat file to read data under that line
  1 Kommentar
Jan
Jan am 22 Okt. 2016
It depends on the format of the .dat file. There is no standard for this file type, so we cannot guess the details.

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Jan
Jan am 22 Okt. 2016
Bearbeitet: Jan am 26 Okt. 2016
Guessed, tha the .dat file is a text file and you want to search fpr the occurence of a string anywhere in a line:
fid = fopen(FileName, 'r');
if fid == -1
error('Cannot open file: %s', FileName);
end
key = 'YourStr';
data = 'not found';
ready = false;
lineNo = 0; % [EDITED]
while ~eof(fid) && ~ready
S = fgetl(fid);
lineNo = lineNo + 1; % [EDITED]
if any(strfind(S, key))
data = YourReadMethod;
ready = true;
end
end
fclose(fid);
  3 Kommentare
Image Analyst
Image Analyst am 22 Okt. 2016
Put a line counter variable inside the loop that you increment.
Jan
Jan am 26 Okt. 2016
@lafnath p: See [EDITED] in the code. You see, it is not complicated.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Data Type Conversion finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by