String compare

11 次查看(过去 30 天)
Jörg
Jörg 2011-9-25
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

采纳的回答

Daniel Shub
Daniel Shub 2011-9-25
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 个评论
Daniel Shub
Daniel Shub 2011-9-25
You tried it with a cell array?
Jörg
Jörg 2011-9-25
Ah, that did the trick. Thanks a lot!!

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Characters and Strings 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by