strrepfile

版本 1.3.0.0 (2.2 KB) 作者: Richard Crozier
Replace one or more strings in one or more files safely
362.0 次下载
更新时间 2013/9/11

查看许可证

strrepfile(filename,S1,S2) replaces all occurrences of the string S1 in the file filename with the string S2. S1, S2 may also be cell arrays of strings of the same size, in which case the replacement is performed for each pair by performing a strrep using corresponding elements of the inputs. Alternatively S2 may be a string string with and S1 a cell array, in this case the single string S2 will replace all the strings in S1

-----

strrepfile replaces the string by creating a temporary copy of the file in which the replace is to be performed, replacing it in this file, and copying the file back to the original location for safety. Submission #42877 has the advantage of allowing regex replace, but is not as safe as this version. strrepfile could probably be modified to use regexprep quite easily.

---

Note strrepfile requires 'samesize.m' my file exchange contribution here: http://www.mathworks.com/matlabcentral/fileexchange/36636-samesize

引用格式

Richard Crozier (2024). strrepfile (https://www.mathworks.com/matlabcentral/fileexchange/43086-strrepfile), MATLAB Central File Exchange. 检索来源 .

MATLAB 版本兼容性
创建方式 R2012a
兼容任何版本
平台兼容性
Windows macOS Linux
类别
Help CenterMATLAB Answers 中查找有关 Characters and Strings 的更多信息
致谢

参考作品: Find and Replace in Files, samesize

Community Treasure Hunt

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

Start Hunting!
版本 已发布 发行说明
1.3.0.0

asthetic change to description, no change to file

1.2.0.0

fixed bug in testing for string or cell array of strings filename

1.1.0.0

Improved and corrected help

1.0.0.0