How can I format fscanf to read strings of different lengths, some with spaces in them?
7 次查看(过去 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
2017-10-14
@David Holman: please upload a sample file by editing your question and clicking the paperclip button.
回答(2 个)
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.
1 个评论
Walter Roberson
2017-10-12
Yup.
Is there a delimiter such as comma that marks the end of the name field?
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
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
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 Center 和 File Exchange 中查找有关 Install Products 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!