how to print a specific potion of a text file
5 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Ayushi Saxena
am 29 Dez. 2015
Kommentiert: Ayushi Saxena
am 30 Dez. 2015
hi... i have a text file which has different headings like 1. introduction 2. circuit analysis etc... i want to display all the lines lying between these headings 1 & 2
0 Kommentare
Akzeptierte Antwort
Walter Roberson
am 29 Dez. 2015
filecontent = fileread('YourFile.txt');
h1pos = strfind(filecontent, '1. introduction');
h2pos = strfind(filecontent, '2. circuit analysis');
disp( filecontent(h1pos(1) : h2pos(1)-1) );
4 Kommentare
Walter Roberson
am 30 Dez. 2015
output = filecontent(h1pos(1) : h2pos(1)-1);
Note that this will be a single string that includes newline characters and possibly carriage return characters as well. What form are you hoping for considering you have multiple lines?
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu General Applications finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!