Search and replace a word of text file from GUI
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Saeed Soltani
am 29 Feb. 2016
Kommentiert: Saeed Soltani
am 3 Mär. 2016
I need to parse a text file in way like what find and replace (strrep) function does in the string. It actually has to get a word (‘new’) as input from the GUI, search within the text file for a special word (‘old’) and replace it.
Any help would be greatly appreciated
0 Kommentare
Akzeptierte Antwort
Stephen23
am 29 Feb. 2016
Bearbeitet: Stephen23
am 29 Feb. 2016
str = fileread(filename);
str = strrep(str,old,new);
7 Kommentare
Stephen23
am 3 Mär. 2016
Bearbeitet: Stephen23
am 3 Mär. 2016
Reading the inputdlg documentation we find that the output is a cell array. strrep also accepts cell arrays of strings, and then returns a cell array. Oops, providing a cell array to fprintf results in this error message:
Error using fprintf
Function is not defined for 'cell' inputs.
Error in bj (line 9)
fprintf(fid,'%s',str);
By the point this error occurs the file has already been opened for writing (and the contents deleted). To solve this we just need to get the string out of the cell array, using cell array indexing:
str = strrep(str,'old',new{1});
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Characters and Strings 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!