How can I read data from the middle of text file?
Show older comments
If I want to read the data in the following txt file, from S(but not include) to the last 056 and store it into an array, what shall I do?
【FROM 192.168.7.2:658161】 058 032 055 003 056 S 058 032 055 003 056 058 032 055 003 056 058 032 055 003 056 058 032 055 003 056 058 032 055 003 056 058 032 055 003 056 058 032 055 003 056 【FROM 192.168.7.2:658161】
I have tried fscanf(Fid,'%d'). It seems that an empty array is returned, because there are characters in the file.
I have also tried the following one, but it does not work as well. Thank you for giving me a help!
while(1)
YY=fopen('exp.txt');
flag=fscanf(YY,'%s');
if ~isempty(findstr(flag, 'S')),
data=fscanf(YY,'%d');
data=data';
j=size(data);
data_index=[1:j(2)];
figure(1);
plot(data_index,data);
fclose(YY);
end
end
2 Comments
Muthu Annamalai
on 27 Feb 2013
Edited: Muthu Annamalai
on 27 Feb 2013
and the documentation for textread is your friend http://www.mathworks.com/help/matlab/ref/textread.html
Walter Roberson
on 27 Feb 2013
Odd. What is the unicode code point of that '【' character ?
Accepted Answer
More Answers (1)
If your file had multiple lines like
[FROM 192.168.7.2:658161] 058 032 055 003 056 S 070 ... 056
[FROM 192.168.7.2:658161] 058 032 055 003 056 S 071 ... 056
[FROM 192.168.7.2:658161] 058 032 055 003 056 S 072 ... 056
[FROM 192.168.7.2:658161] 058 032 055 003 056 S 073 ... 056
and you wanted to generate a n_lines x n_data array of these values between S no included and last 056 entries included, for each line, you could go for something like:
buffer = fileread('exp.txt') ;
D = cell2mat(cellfun(@(m) sscanf(m, '%d'), ...
regexp(buffer, '(?<=S\s).*?(?=($|[\r\n]))', 'match'), ...
'UniformOutput', false)).' ;
Note that you would be able to build a single array of data only if S was always delimiting the same amount of data within a given file.
Cheers, Cedric
Categories
Find more on Text Data Preparation in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!