Copy and paste all lines from the first text file to another text file after certain line numbers
Show older comments
Hi,
I would like to copy and paste the values from the first txt file (Al.txt) to another text file (TestFile1.txt) after line 6. It should look like the TestFileWithAl.txt. It is copy and paste the values without loosing the rest of the information in TestFile1.txt
I wrote the follwing code The following code does not tell which line to paste in TestFile1.txt. How will I tell copy and past after line 6?
tmp = readlines('Al.txt');
writelines(tmp(1:end), 'TestFile1.txt')
Thank you for your help
Accepted Answer
More Answers (0)
Categories
Find more on Data Import and Export in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!