フィルターのクリア

How can I change a quotation mark in a text string readed from an excel sheet ?

1 回表示 (過去 30 日間)
Christophe
Christophe 2014 年 6 月 16 日
コメント済み: Christophe 2014 年 6 月 17 日
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 Center および File ExchangeSpreadsheets についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by