MATLAB: How to change a quotation mark in a text string readed from an excel sheet

string

In an excel sheet, I have this string : Pression d'injection I want to change the quotation mark ' with a double quotation mark "

Best Answer

Christophe, do you mean:
old_str = 'Pression d''injection'
old_str =
Pression d'injection
new_str = strrep(old_str,'''','"')
new_str =
Pression d"injection