필터 지우기
필터 지우기

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 "

채택된 답변

Mischa Kim
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개)

SRI
SRI 2014년 6월 16일
Hi could you elaborate the task which you want to be done

카테고리

Help CenterFile Exchange에서 Spreadsheets에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by