私はセル配列を持っています:
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';
}
ご覧のとおり、2 番目の列が最初の列に連結されています... 何か提案はありますか?