我有一个单元格数组:
cellArray = {
'123' 'BC' 'other value';
'124' 'BC' 'other value';
'125' 'BC' 'other value';
'126' 'BC' 'other value';
}
我想得到这个:
cellArray = {
'123 BC' 'other value';
'124 BC' 'other value';
'125 BC' 'other value';
'126 BC' 'other value';
}
如您所见,第二列现在连接到第一列......有什么建议吗?