Using ismember on vector with strings

3 次查看(过去 30 天)
Hi,
I am wonderinh whether I can write something like this:
If any(ismember(result , [" nafor", "kform", "acet"]))

采纳的回答

meghannmarie
meghannmarie 2019-10-3
编辑:meghannmarie 2019-10-3
if you are trying to match string to string, try this:
if any(contains([' nafor','kform','acet'],result))
  5 个评论
Stephen23
Stephen23 2019-10-4
编辑:Stephen23 2019-10-4
Note that [] is a concatenation operator, so this code:
[' nafor','kform','acet']
is just a complex way of writing this:
' naforkformacet'
Perhaps you actually intended to define strings, rather than character vectors?
Muazma Ali
Muazma Ali 2019-10-4
No i was thinking of character vectors and I got my answer yesterday that I accepted :)

请先登录,再进行评论。

更多回答(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