How to find strings in an excel file?

5 views (last 30 days)
I want to find all colons in an excel file
colons = findstr(char, ':');
colons shows up empty. why is that?
  1 Comment
Yao Li
Yao Li on 8 Apr 2013
Have you loaded the data from Excel file to matlab?

Sign in to comment.

Accepted Answer

Diana
Diana on 9 Apr 2013
Thanks for your reply
Yes, I did.
I also tried
colons = findstr(string, ':');
Any idea of what could be wrong?
  4 Comments
Yao Li
Yao Li on 11 Apr 2013
sorry, I think it is not good to use string as the name of the variable.
find(strcmp(':',text_load_from_Excel ))
text_load_from_Excel is a cell type variable loaded from the Excel file
Diana
Diana on 15 Apr 2013
No worries. Can you explain to me what a cell type variable is?

Sign in to comment.

More Answers (0)

Categories

Find more on Data Import from MATLAB in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!