How to read only text from a big data?

조회 수: 2 (최근 30일)
aneps
aneps 2017년 9월 18일
댓글: Walter Roberson 2017년 9월 19일
I have a huge data file (.txt) with some text and numeric data. It is organized as follows:
Text1 ....
Numeric data (m1xn1)
Text2
Numeric data (m2xn2)
Text3
Numeric Data (m3xn3).....
so on...
I just want to read the data file and display Text1, Text2, Text3 etc . on the command window. How can do that? I tried the following code which read only the first line. Is it possible to modify the code to read all the text line by line? All these text has 'Scan' in it. So may be by searching for lines with 'Scan' and display in the command window. I dont know how to code this.
file = 'C:\Users\Documents\21072016_Exp_A.txt';
[fid, message] = fopen(file,'rt');
tline = fgets(fid);
disp(tline)
fclose(fid);
  댓글 수: 2
per isakson
per isakson 2017년 9월 18일
편집: per isakson 2017년 9월 18일
How large is the file compared to the primary memory?
aneps
aneps 2017년 9월 18일
around 500MB

댓글을 달려면 로그인하십시오.

채택된 답변

Walter Roberson
Walter Roberson 2017년 9월 18일
S = fileread(file);
S = regexp(S, '^\s*[+0123456789-].*$','match','lineanchors', 'dotexceptnewline') ;
fprintf('%s\n', S{:}) ;
  댓글 수: 5
aneps
aneps 2017년 9월 18일
Thank you.. This worked.. Yes, I also want to keep the numeric data. But the texts in the data file has important information. I need to know those when I process several data files. That is why I just want to display those in the command window.
Walter Roberson
Walter Roberson 2017년 9월 19일
In my code put an ^ right after the [

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Text Data Preparation에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by