Reading few lines from a text file

2 次查看(过去 30 天)
Shalini
Shalini 2012-11-29
I have a text file and I want to read first 10 lines from that file.I tried scantext but not successful.
Can anyone suggest?
  5 个评论
Jan
Jan 2012-11-30
[MOVED from answer section] Vishal Rane wrote:
Post your comments in the comments sections only. Not many of us bother opening a thread that already has a couple of answers.
Now for your query, refer these functions and examples, Low Level File IO
Comment back in case of any doubts.
Jan
Jan 2012-11-30
@Shalini: Whenever you post the term "I tried...", post the corresponding code and the occurring problems also. Otherwise we cannot give an advice for improvements.

请先登录,再进行评论。

回答(1 个)

Jan
Jan 2012-11-30
编辑:Jan 2012-11-30
  • fopen() to open the file (a test for success is strongly recommended)
  • Data = cell(1, 10): Pre-allocate the output
  • for loop from 1 to 10
  • fgets() to read one line, store it in Data cell.
  • end
  • fclose() to close the file

类别

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