Replace with regexprep in text file

4 次查看(过去 30 天)
Hello everybody! I am using regexprep to replace a set of characters in a text file.
For example: I am trying to replace +, - , /, ) , (| occurences in my text file with |€. so i used the following code
fid = fopen('repSymbols.txt','wt');
inData = fileread('equations');
fprintf(fid,'%s',regexprep(inData,'[=+)-/(]','€'));
fclose(fid);
But when I use this, it also replaces the occurences of dot . in the file. I don't want the dots to be replaced. Any idea on this?

采纳的回答

OCDER
OCDER 2018-9-6
The ")-/" term in the pattern search is actually interpretted as all characters from ")" to "/". So it's the following:
char(uint8(')'):uint8('/'))
ans =
')*+,-./'
Therefore the expanded search pattern does include the ".".
To fix this, use the escape character "\" before the character "-" like this:
inData = '=+)-/(...';
regexprep(inData,'[=+)-/(]','€') %Incorrect
ans =
'€€€€€€€€€'
regexprep(inData,'[=+)\-/(]','€') %Correct
^ add this \
ans =
'€€€€€€...'

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Characters and Strings 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by