MATLAB: Convert string to cell

string to cell

i have a cell like
a = {'a;b;c;d;e;f;g;h'} % size is 1*1
how to place elements in to individual cell of a
output size = 1*8

Best Answer

b=regexp(a,';','split')
b{:}