how read this txtfile?

조회 수: 1 (최근 30일)
huda nawaf
huda nawaf 2012년 7월 21일
hi,
if i have txt file with different types of values. how i can read it
the file has these information: 1|Toy Story (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Toy%20Story%20(1995)|0|0|0|1|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0
2|GoldenEye (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?GoldenEye%20(1995)|0|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0|1|0|0
what i need is just access to last 19 items .i.e i need access to binary no.
how can do that?
  댓글 수: 1
Mus Bohr
Mus Bohr 2012년 7월 21일
textscan or textread.

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

채택된 답변

per isakson
per isakson 2012년 7월 21일
편집: per isakson 2012년 7월 21일
This is a start. Add a loop and fgetl.
str = '1|Toy Story (1995)|01-Jan-1995||http://us.imdb.com/M/title-exact?Toy%20Story%20(1995)|0|0|0|1|1|1|0|0|0|0|0|0|0|0|0|0|0|0|0';
cac = regexp( str, '(\|(1|0)){3,}', 'match' ) ;
tmp = cac{:}(2:end); % strip off first bar
val = textscan( tmp, '%u', 'Delimiter', '|', 'CollectOutput', true );
/R2012a
  댓글 수: 1
huda nawaf
huda nawaf 2012년 7월 21일
fantastic
many many thanks for u

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 String Parsing에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by