[Solved] Split a value of different data types cell array based upon a delimiter December 17, 2022 by Kirat This can be done using cellfun and strsplit as follows: NewValues = cellfun(@(x) strsplit(x, ', '), MyValues, 'UniformOutput',0); NewValues = [NewValues{:}].' 7 solved Split a value of different data types cell array based upon a delimiter