MATLAB: How to return first 5 digits of 6th column in cell array

cell array; indexing

Hi Matlab community,
Here's another newbie question. I would like to replace the 6th column with the first 5 digits of that column (20134); I would then like to create a 7th column that is the last digit of the 6 column. Here's a sample array.
Thank-you for your help.
cell = {'this' 'is' 'a' 'cell' 'array' '2013420134' }

Best Answer

Ok found it; thanks anyway all
cell{1,5}(1:5)