doing a 'strfind' with apostrophe in the string?
3 ビュー (過去 30 日間)
古いコメントを表示
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..
0 件のコメント
採用された回答
Sean de Wolski
2011 年 5 月 26 日
Use double apostrophes everywhere you have an apostrophe in your string, e.g:
A = findstr('''', '''REACQ''=''Y''')