String compare

11 visualizaciones (últimos 30 días)
Jörg
Jörg el 25 de Sept. de 2011
Hi,
likely a beginners question. I have a matrix containing strings, say
A=['aa';'bb']
now I'm looking for a function f(x,string) that will do row-wise string comparison such that
f(A,'aa') leads to [1;0]
is that possible? I failed to use strcmp.
Thanks Jörg

Respuesta aceptada

Daniel Shub
Daniel Shub el 25 de Sept. de 2011
If you can use
A = {'aa'; 'bb'}
then
strcmp(A, 'aa')
works. The cell array for A might be better because it lets you have unequal length strings.
  3 comentarios
Daniel Shub
Daniel Shub el 25 de Sept. de 2011
You tried it with a cell array?
Jörg
Jörg el 25 de Sept. de 2011
Ah, that did the trick. Thanks a lot!!

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Characters and Strings en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by