我有一个单元格'Animals',内容为:
'Cat'
'Dogs'
'Elephant'
我想在消息框中显示以下内容:
The only animals in our zoo are:
Cat
Dogs
Elephant
我如何实现这一目标?
编辑: 很抱歉:每次用户运行代码时,单元格数组'Animals'的内容都会发生变化。 “动物”的大小大多是3x1或4x1。因此,必须识别可变大小和内容。
答案 0 :(得分:1)
如果您阅读msgbox
的{{3}}:
intro = 'The only animals in our zoo are:'
animals = {'Cat','Dogs','Elephant'}; % Define as desired:
msgbox([intro animals])