MATLAB: How can i store string in cell without apostrophe

MATLABstrings

I want to store say A50 in cell ..but i dont want apostrophes in it like 'A50'..how can i do it.?
I tried to use string to number and string to double but it didnot work.
Thanks in advance.

Best Answer

M = cell(1,1);
str = 'A50';
str = char(str);
M{1} = str;