How to out a txt file that contains specific lines from an input text file with vector of line numbers
조회 수: 3 (최근 30일)
이전 댓글 표시
I am trying to out some specific lines plus an extra empty line at the end in a text file. The initial input was a text file and a vector input that has the line numbers of the lines that I am supposed to take out from the input text. for example-
inputs file is in format
1| smart
2| intelligent
3| dumb
4| silly
and vector=[2 3]
the output will be the lines representing the vector number which is
1| intelligent
2| dumb
3|
the last line is gonna be empty. How to do this?
댓글 수: 0
답변 (1개)
Sahithi Kanumarlapudi
2019년 11월 6일
‘newline’ could be used to insert a newline in a text file.
You can refer to a similar problem of reading specified lines from a text file in the following link
For more information on ‘newline’ refer to the following link
Hope this helps!
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Matrix Indexing에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!