필터 지우기
필터 지우기

FormatSpec for mixed entry of Input

조회 수: 3 (최근 30일)
Nidhi SRIVASTAVA
Nidhi SRIVASTAVA 2017년 6월 29일
답변: dpb 2017년 6월 29일
I am using textscan to read a file. The data of file is something like:
ASC2007252381128.0000.T88.ch04.sac E
ASC2007252381128.0000.T90.ch04.sac A
and so on.
I am having problems in defining formatspec to be used in textscan. I tried reading it by using fileread which converts it into a string array of single cell. I wish to obtain just the string before a blank i.e,
ASC2007252381128.0000.T90.ch04.sac,ASC2007252381128.0000.T88.ch04.sac
and so on. Can anybody please help me with the problem? Thanks

채택된 답변

dpb
dpb 2017년 6월 29일
>> s='ASC2007252381128.0000.T88.ch04.sac E'; % sample input record
>> fmt='%s %*s'; % read a string, skip a string
>> textscan(s,'%s %*s') % read it..
ans =
{1x1 cell}
>> ans{:}
ans =
'ASC2007252381128.0000.T88.ch04.sac'
>>

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Large Files and Big Data에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by