Find a word in structure

2 Ansichten (letzte 30 Tage)
Erik Verdijk
Erik Verdijk am 30 Mär. 2018
Kommentiert: Erik Verdijk am 30 Mär. 2018
Ik like to find a word (example:cat)in a structure field (by example: structureA.field1). How can you do that?

Antworten (1)

Birdman
Birdman am 30 Mär. 2018
Bearbeitet: Birdman am 30 Mär. 2018
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 Kommentare
Stephen23
Stephen23 am 30 Mär. 2018
@Erik Verdijk: What version of MATLAB are you using?
Erik Verdijk
Erik Verdijk am 30 Mär. 2018
R2016a

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Characters and Strings finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by