Ik like to find a word (example:cat)in a structure field (by example: structureA.field1). How can you do that?

답변 (1개)

Birdman
Birdman 2018년 3월 30일
편집: Birdman 2018년 3월 30일

0 개 추천

One approach:
structureA=struct;
structureA.field1="cat";
strfind(structureA.field1,"cat")
It will return 1 since the number of cat word in second argument of strfind function is 1.

댓글 수: 5

Stephen23
Stephen23 2018년 3월 30일
편집: Stephen23 2018년 3월 30일
"It will return 1 since cat word occurs one time in your field."
Actually it will return 1 because that is the index position of where the string "cat" was found. strfind's output is not a count of how many times the string was found: the number of elements in the output corresponds to how many times the string was found.
Birdman
Birdman 2018년 3월 30일
Ups yes, I read the documentation incorrectly. Let me edit it.
Erik Verdijk's "Answer" moved here:
structureA=struct;
structureA.field1="cat";
strfind(structureA.field1,"cat")
I get the message:
Error: File: negenentwintigmaart.m Line: 8 Column: 12
The input character is not valid in MATLAB statements or expressions.
What Did I wrong?
Stephen23
Stephen23 2018년 3월 30일
@Erik Verdijk: What version of MATLAB are you using?
Erik Verdijk
Erik Verdijk 2018년 3월 30일
R2016a

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

카테고리

도움말 센터File Exchange에서 Characters and Strings에 대해 자세히 알아보기

태그

질문:

2018년 3월 30일

댓글:

2018년 3월 30일

Community Treasure Hunt

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

Start Hunting!

Translated by