0

我是一个新的 matlab 用户,我可以通过将字符串存储在变量中并使用它来删除使用 strrep 删除字符串吗?例如

C = textread('input.txt', '%s', 'delimiter', '\n');
expr = '[^\n]*.Data [^\n]*';
fileread_info = regexp(filetext, expr, 'match')
for id=i:length(fileread_info)
C = strrep(C, 'fileread_info{i}', '');
end

但这会删除文件 input.txt 中的 expr 一词。如何删除变量 expr 中包含的字符串?谢谢!

4

1 回答 1

0

正如@Navan 已经建议的那样:

  1. 您可以使用regexprep

    C = regexprep( C, expr, '' ); % will do the regular expression search + replace in one commnad

  2. 你应该取消引用'fileread_info{i}'

    C = strrep(C, fileread_info{i}, '');

于 2013-01-08T08:21:40.620 回答