How can I change a quotation mark in a text string readed from an excel sheet ?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Christophe
am 16 Jun. 2014
Kommentiert: Christophe
am 17 Jun. 2014
In an excel sheet, I have this string : Pression d'injection I want to change the quotation mark ' with a double quotation mark "
0 Kommentare
Akzeptierte Antwort
Mischa Kim
am 16 Jun. 2014
Christophe, do you mean:
old_str = 'Pression d''injection'
old_str =
Pression d'injection
new_str = strrep(old_str,'''','"')
new_str =
Pression d"injection
Weitere Antworten (1)
Siehe auch
Kategorien
Mehr zu Spreadsheets finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!