フィルターのクリア

read a commented line from code

3 ビュー (過去 30 日間)
noa
noa 2013 年 7 月 11 日
hi
i need to scan a large number of files containing interesting data in the comments
at the same line for all files
is there a way i can display that line on the command (it will make it easier to select the relevant files), or any other method is welcome as well
thanks
  2 件のコメント
Jan
Jan 2013 年 7 月 11 日
Which kind of files and comments are your talking of? Text files, binary files with comments in the resources, etc? Do you mean M-files and you want to read a specified line number? If so, does it matter that the line is a comment? Does "display on the command" mean the command window?
dpb
dpb 2013 年 7 月 11 日
You could write a little script that reads the file(s) and displays the specific line(s) in a text box, say, from which user could scroll and/or copy/paste to command line.
I'm not aware there's a way to actually write to the command window prompt although other than the text box you could forego that and simply use disp() to output the desired text to the screen and then the user can cursor up and select and copy/paste.
The textbox route might be less intrusive as it wouldn't scroll existing stuff of the top of the window...

サインインしてコメントする。

回答 (2 件)

per isakson
per isakson 2013 年 7 月 13 日
編集済み: per isakson 2013 年 7 月 13 日
It is possible to make all kinds of fancy tools. However, how much work are you prepared to invest in the tool?
You want to show the filename together with one comment-line? If so,
  • print to the command window: filename and comment in two columns.
  • add a hyperlink to the filename
  • use cprintf
See
And if you want something more fancy LOOK4 might serve as a starting point

Image Analyst
Image Analyst 2013 年 7 月 13 日
Why not just use fgetl() to read in lines until you get to "the same line" (say, line #5 or whatever)? Then call fprintf() to spit that line out to the command window. Or use set() to send that line to a static text label in your GUI.

カテゴリ

Help Center および File ExchangeText Data Preparation についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by