strrepfile

Replace one or more strings in one or more files safely
ダウンロード: 362
更新 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 Center および MATLAB AnswersCharacters 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