read a commented line from code
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
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 comentarios
Jan
el 11 de Jul. de 2013
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
el 11 de Jul. de 2013
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...
Respuestas (2)
per isakson
el 13 de Jul. de 2013
Editada: per isakson
el 13 de Jul. de 2013
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
0 comentarios
Image Analyst
el 13 de Jul. de 2013
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.
0 comentarios
Ver también
Categorías
Más información sobre Environment and Settings en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!