How to read strings and numbers in a text file?
6 ビュー (過去 30 日間)
表示 古いコメント
Hi there,
I got an attached type text file which needs to read the content, set them into variables and rewrite the text file again.
E.g. read 'A' in the text file as a variable and change its value into '2' and rewrite the text file. Same procedure should conduct to B,C,Trail01 and Trial02.
Can anyone help me to solve the problem using this example file?
2 件のコメント
採用された回答
Jan
2018 年 11 月 16 日
編集済み: Jan
2018 年 11 月 16 日
% Import the file:
key = 'SET LEVEL';
new = 5.0;
file = 'Test01.txt'
cstr = strsplit(fileread(file), '\n');
% Find and replace the wanted line:
match = strncmpi(cstr, key, length(key));
cstr{match} = sprintf('%s %g', key, new);
% Write the file:
[fid, msg] = fopen(file, 'w');
if fid == -1, error('%s', msg); end
fprintf(fid, '%s\n', cstr{:});
fclose(fid);
The part "Same procedure should conduct to B,C,Trail01 and Trial02" is not clear to me, but it should not be hard to modify the above code to your needs.
その他の回答 (0 件)
参考
カテゴリ
Find more on Text Data Preparation in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!