MATLAB: Spliting Time stamp without spaces into columns

MATLABno-space delimiterspliting cell array

I have a Time_stamp cell array as follows:
'AA20150760317000000'
'AA20150760317000500'
'AA20150760317001000'
'AA20150760317001500'
'AA20150760317002000'
'AA20150760317002500'
'AA20150760317003000'
'AA20150760317003500'
'AA20150760317004000'
'AA20150760317004500'
'AA20150760317005000'
I wish to convert to a number array into columns:
2015 076 03 17 00 00 00
2015 076 03 17 00 05 00
which contains Year, doy, month, day, hour, minute, seconds.
I am a total noob in matlab. Greatly appreciate any help.

Best Answer

cell2mat(cellfun(@(S) structfun(@str2double,S), regexp(Time_stamp, '(?<year>\d\d\d\d)(?<doy>\d\d\d)(?<month>\d\d)(?<day>\d\d)(?<hour>\d\d)(?<minute>\d\d)(?<seconds>\d\d)','names','once'), 'UniformOutput', false).').'