how to extract date from a txt file while skipping other data?

조회 수: 1 (최근 30일)
Imtiaz nabi
Imtiaz nabi 2022년 1월 13일
편집: per isakson 2022년 1월 14일
Hi there, I am reading GPS/GNSS ephemeris file and have extracted the data from the .nav file but I am confused about extracting the data from the file. Can anyone please help me? I want to extract the date from the .nav file and convert it into GPS time.
to better understand my uestion please read the attached image. The highlighted columns in row 8, row, 16 and so on represents time in Year, Month, day, hour, minute and second format. for example in row 18 after the satellite 22 this is basically 2019/7/31 2:00:00.
  댓글 수: 2
Cris LaPierre
Cris LaPierre 2022년 1월 13일
It's hard to help from a screenshot. Please attach a sample file for us to use using the paperclip icon.
per isakson
per isakson 2022년 1월 14일
편집: per isakson 2022년 1월 14일
Extracting the date substrings can be done with chr = fileread(...) and regexp(...) (, I guess.)
%%
chr = { '22 19 7 31 2 0 0.0 -7.379'
'0.0 1.1 2.2 3.3 4.4 5.5 6.6 9'
'30 19 8 1 2 0 0.0 -7.379' };
chr = strjoin( chr, '\n' );
xpr = '(?<=\d{2})\x20+\d{1,2}\x20+\d{1,2}\x20+\d{1,2}\x20+\d{1,2}\x20+\d{1,2}[0-9\.]+';
cac = regexp( chr, xpr, 'match' )
cac = 1×2 cell array
{' 7 31 2 0 0.0'} {' 8 1 2 0 0.0'}
Don't you need the satellite number too?

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

답변 (0개)

카테고리

Help CenterFile Exchange에서 Data Import and Analysis에 대해 자세히 알아보기

제품


릴리스

R2017b

Community Treasure Hunt

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

Start Hunting!

Translated by