How can I change a quotation mark in a text string readed from an excel sheet ?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
In an excel sheet, I have this string : Pression d'injection I want to change the quotation mark ' with a double quotation mark "
0 Commenti
Risposta accettata
Mischa Kim
il 16 Giu 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
Più risposte (1)
Vedere anche
Categorie
Scopri di più su Spreadsheets in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!