How to use string in if else statement?
80 次查看(过去 30 天)
显示 更早的评论
hi all, i have a code that need me to use the if else statement. in my string, i have two strings of '34970A' and '3458A'. if i am using these two, the code gave me error as : matrix didnt match. how am i going to solve this?
if content_str == '34970A'
content_str = 'Apple';
else if content_str == '03458A'
content_str = 'Grape'
thank you very much for your help :)
0 个评论
采纳的回答
KSSV
2018-6-8
if strcmp(content_str,'34970A')
content_str = 'Apple';
else if (content_str,'03458A')
content_str = 'Grape'
end
Read about strcmp
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Characters and Strings 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!