フィルターのクリア

doing a 'strfind' with apostrophe in the string?

6 ビュー (過去 30 日間)
Michael
Michael 2011 年 5 月 26 日
i have to do a strfind for the following phrase:
'REACQ'='N'
But when I go to do A = strfind(B, ''REACQ'='Y''), then there are clearly too many apostrophes in the code for MATLAB to know what to do..

採用された回答

Sean de Wolski
Sean de Wolski 2011 年 5 月 26 日
Use double apostrophes everywhere you have an apostrophe in your string, e.g:
A = findstr('''', '''REACQ''=''Y''')

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeCharacters and Strings についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by