I wrote the following code for a file that I attach, but it is not working.
filecontent = fileread('C:\Users\User\Desktop\Document 8.txt')
filecontent6 = regexprep( filecontent ,' 6; !- Minimum Number of Warmup Days' , ' 5; !- Minimum Number of Warmup Days' )
fid = fopen('C:\Users\User\Desktop\Document 5.idf', 'wt')
assert(fid > 0, 'failed to open file for writing');
fwrite(fid, filecontent6)
fclose(fid)

 Akzeptierte Antwort

Guillaume
Guillaume am 11 Jan. 2018

0 Stimmen

"but it is not working"
That is a very useless statement if you don't tell us in what way it is not working, or what you expected the code to do.
It is not working because:
  1. You've got an extra space in the name of the file in your fileread call, 'Document 8' vs 'Document8' ?
  2. the string ' 6; !- Minimum Number of Warmup Days' is not present in your document? Note that the same string with one less space before the 6 is present.
  3. Some other reason?
I suspect that your problem is point 2.
Note that if you don't know how to build regular expressions, I would recommend that you use strrep instead of regexprep.

Weitere Antworten (0)

Kategorien

Mehr zu Characters and Strings finden Sie in Hilfe-Center und File Exchange

Produkte

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by