필터 지우기
필터 지우기

Find a specific word in a textfile and insert 2 new lines in front of it

조회 수: 1 (최근 30일)
Sam
Sam 2020년 8월 6일
댓글: Rik 2020년 8월 6일
Hello,
I've got a very basic question which I can't seem to figure out. I've got a textfile in which I want to find the word 'Observation_3'. Then I want to insert 2 new lines in front of the word 'Observation_3'. Can anyone help?
Thank you.
  댓글 수: 4
Sam
Sam 2020년 8월 6일
Thank you!
Now I have the location in my file where I want to insert 2 new lines... How can I do this? I know how to use fopen and fwrite, but I can't seem to figure it out...
filetext = fileread('test2.txt');
expr = '\w*Observation_3\w*';
[startIndex,endIndex] = regexp(filetext,expr,'match');
%Insert new line at position endIndex - 14;
...
Rik
Rik 2020년 8월 6일
insterttext=sprintf('%s\n%\s\n','hello','world');
newfiletext = [filetext(1:(endIndex-14)) insterttext filetext((endIndex-13):end)];

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

답변 (0개)

카테고리

Help CenterFile Exchange에서 Low-Level File I/O에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by