How can I change a quotation mark in a text string readed from an excel sheet ?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Christophe
el 16 de Jun. de 2014
Comentada: Christophe
el 17 de Jun. de 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 comentarios
Respuesta aceptada
Mischa Kim
el 16 de Jun. de 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
Más respuestas (1)
Ver también
Categorías
Más información sobre Spreadsheets en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!