How can I change a quotation mark in a text string readed from an excel sheet ?
1 次查看(过去 30 天)
显示 更早的评论
In an excel sheet, I have this string : Pression d'injection I want to change the quotation mark ' with a double quotation mark "
0 个评论
采纳的回答
Mischa Kim
2014-6-16
Christophe, do you mean:
old_str = 'Pression d''injection'
old_str =
Pression d'injection
new_str = strrep(old_str,'''','"')
new_str =
Pression d"injection
更多回答(1 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Spreadsheets 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!