- strfind
- ismember
- contains
Is there a dsearchn equivalent for strings?
    2 Ansichten (letzte 30 Tage)
  
       Ältere Kommentare anzeigen
    
    Reza Yahyaei
 am 27 Aug. 2020
  
    
    
    
    
    Kommentiert: Reza Yahyaei
 am 5 Dez. 2020
            I have two cell arrays, one is the array I want to find indices of multiple strings. Say q = { 'A', 'B' } and p = { 'H', 'F', ..., 'Z' }. Is there a function that finds the strings and returns their indices like ans = [ 12, 3 ] ? Or the only way is to use a for loop and find(strcmp(...)) which doesn't seem very efficient?
0 Kommentare
Akzeptierte Antwort
  Cris LaPierre
    
      
 am 27 Aug. 2020
        I think you would have to do it one value at a time.
find(contains(p,q(1)))
There are several functions you could use
Weitere Antworten (0)
Siehe auch
Kategorien
				Mehr zu Matrix Indexing finden Sie in Help Center und File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

