How can I format fscanf to read strings of different lengths, some with spaces in them?

조회 수: 14 (최근 30일)
I'm trying to read comet names from a text file with fscanf and when I use %s, the read stops at the first space in the name, then considers the remaining string to be the next data field. When I use %c which is supposed to read spaces, and format %Nc using a value of N that's large enough for the largest name, the shorter names have part of the next data field (large integers) read in as part of the name. BTW, not all of the names have spaces, so '%s%s' doesn't work either. Thank you.
  댓글 수: 1
Stephen23
Stephen23 2017년 10월 14일
@David Holman: please upload a sample file by editing your question and clicking the paperclip button.

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

답변 (2개)

dpb
dpb 2017년 10월 11일
Can't always read a mal-formed input file; if the data strings contain embedded blanks they need to be quoted strings.
Probably the only way to do this otherwise would be to read in each full record as a string then do a lookup to a known database--but if you make the database, there's probably no reason to read the file.

Cedric
Cedric 2017년 10월 12일
Wild guess:
cometNames = strtrim( strsplit( fileread( 'MyFile.txt' ), ',' )) ;
will work, provided that you adapt the delimiter to your case.
  댓글 수: 6
dpb
dpb 2017년 10월 12일
I'm in favor...(of both) :) It's seemed to me to becoming worse in that regards...very discouraging to get not even a sniff. Wonder if could at least record the poster's id came back--do they have that much info???
Cedric
Cedric 2017년 10월 13일
I think that just imposing an email verification during the account creation (which I think/hope is the case) and giving us the possibility to at least have the TMW server send a reminder (through some button, even if we cannot add text) would be efficient. Of course it would not get people who black list mathworks, but I don't think that people are that bad in general. I guess that often they receive an email when they get an answer, and if they don't receive anymore email they believe that there is no activity (even though we are adding comments with suggestions or asking for more details).

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

카테고리

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