using single quotes with findstr
13 ビュー (過去 30 日間)
古いコメントを表示
Hi
I have the following:
test = '''any word'''
which creates a char array containing the word with quotes
now i want to find the position of the quotes:
out = findstr(test,' '' ' )
but this doesn't work and returns an empty array. Can someone please explain how to do this and also why i cant use the escape sequence for single quotes i used to create the word in the first place.
Im using R2008b
Thanks
Matt
0 件のコメント
採用された回答
Oleg Komarov
2011 年 8 月 5 日
strfind(test,'''')
With ' '' ' you are looking for < blank>'<blank>
2 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Startup and Shutdown についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!