Info
This question is closed. Reopen it to edit or answer.
Creating a Text file from other text file
1 view (last 30 days)
Show older comments
Suppose I have a Text file and I want to generate 100 text files from that one. In every text file only one number will be replaced, other will remain same. For Example, the main text file contains AAA BBB 1, the next should be AAA BBB 2, AAA BBB 3 and so on. How to do get that logic? Any type of suggestion would be appreciated.
0 Comments
Answers (1)
Azzi Abdelmalek
on 18 Jul 2014
Edited: Azzi Abdelmalek
on 18 Jul 2014
out=regexp(sprintf('AAA BBB %d,',1:10),',','split')
out(end)=[]
%or
str='AAA BBB'
out=genvarname(repmat({str},11,1))
out(1)=[]
1 Comment
This question is closed.
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!