How to find strings in an excel file?

I want to find all colons in an excel file
colons = findstr(char, ':');
colons shows up empty. why is that?

댓글 수: 1

Yao Li
Yao Li 2013년 4월 8일
Have you loaded the data from Excel file to matlab?

댓글을 달려면 로그인하십시오.

 채택된 답변

Diana
Diana 2013년 4월 9일

0 개 추천

Thanks for your reply
Yes, I did.
I also tried
colons = findstr(string, ':');
Any idea of what could be wrong?

댓글 수: 4

Yao Li
Yao Li 2013년 4월 9일
편집: Yao Li 2013년 4월 9일
try
find(strcmp(':',string ))
The string here should be a cell matrix loaded from the Excel file. This function returns the location of the colons.
Diana
Diana 2013년 4월 11일
I had to change to
find(strcmp(':',char)) so it would work
But it is still returning empty
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 2013년 4월 15일
No worries. Can you explain to me what a cell type variable is?

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

태그

질문:

2013년 4월 8일

Community Treasure Hunt

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

Start Hunting!

Translated by