identifying positions of a string within a text file

16 ビュー (過去 30 日間)
Brent
Brent 2011 年 3 月 1 日
I would like to take a text file, which has been saved with various special characters ('e.g. $$') and identify the positions that these characters occupy. Then, I would insert values into those positions. So the file may look like: line $$ 1 $$ line 2
So I would need some way to identify positions 6 and 11, then insert text at those locations.
I've tried various things such as reading the file in a string and converting to a char array while using strfind, but in each case, there is an issue. What would be the best way to overwrite the $$'s with values?
Thanks

採用された回答

Walter Roberson
Walter Roberson 2011 年 3 月 1 日
Probably something like this:
fid = fopen(FileName,'rt');
filetext = fread(fid,'*char');
fclose(fid);
newtext = regexprep(filetext, '\$\$', 'Hello', 'once');
newtext = regexprep(newtext, '\$\$', 'World', 'once');
fid = fopen(NewFilename, 'wt');
fwrite(fid, newtext, '*char');
fclose(fid);

その他の回答 (2 件)

Brett Shoelson
Brett Shoelson 2011 年 3 月 1 日
Lots of ways. This one uses regular expressions:
mystr = 'line $$ 1 $$ line 2'
newstr = regexprep(mystr,'\$\$','New_String')
Cheers,
Brett

Brent
Brent 2011 年 3 月 1 日
Thank you both for the quick reply. This is exactly what I needed.

カテゴリ

Help Center および File ExchangeCharacters and Strings についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by