Slicing elements in a cell array

4 views (last 30 days)
Hello,
I have a cell array with elements inside in the following format:
temp = {'1990-01-02T00:00:00';'1990-01-01T00:00:00';'1990-01-03T00:00:00'}
What's the easiest way to slice each element so I get
ans =
'1990-01-02'
'1990-01-01'
'1990-01-03'

Accepted Answer

per isakson
per isakson on 11 Mar 2015
Edited: per isakson on 11 Mar 2015
"What's the easiest way" &nbsp This approach is one candidate
>> datestr(datenum(temp,'yyyy-mm-ddTHH:MM:SS'), 'yyyy-mm-dd')
ans =
1990-01-02
1990-01-01
1990-01-03

More Answers (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!