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