필터 지우기
필터 지우기

Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

Mystifing Textscan Problem with a textfile

조회 수: 1 (최근 30일)
Damo Nair
Damo Nair 2017년 8월 14일
마감: MATLAB Answer Bot 2021년 8월 20일
Hi I have a text file with 2 lines ...
'anyone feel motivated the fri afternoon prior to a holiday? wanted to get lots
done... but i want jammies and judge judy... \"SIR!\" <3 her ',ppp
'seriously, do you have to rub it in maggie!!!! ',ppp
When I try to read it, tt gives me the 2nd line only & not the 1st line like this ... ''seriously, do you have to rub it in maggie!!!! ',ppp'
& my code so far is
fmt = repmat('%s', 1, 1);
fid = fopen('tp.txt', 'rt');
y = textscan(fid, fmt, 'Delimiter', '\t');
fclose(fid);
Also is it possible to separate out the ppp part into another column?
Thanks very much Damo

답변 (0개)

이 질문은 마감되었습니다.

Community Treasure Hunt

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

Start Hunting!

Translated by