Is there a dsearchn equivalent for strings?

1 visualización (últimos 30 días)
Reza Yahyaei
Reza Yahyaei el 27 de Ag. de 2020
Comentada: Reza Yahyaei el 5 de Dic. de 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?

Respuesta aceptada

Cris LaPierre
Cris LaPierre el 27 de Ag. de 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
  • strfind
  • ismember
  • contains
See this post for more ideas.
  1 comentario
Reza Yahyaei
Reza Yahyaei el 5 de Dic. de 2020
I don't remember what happened that I forgot to follow this question (probably my computer got broken) but thanks a lot for your answer.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Matrix Indexing en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by