Slicing elements in a cell array

22 次查看(过去 30 天)
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'

采纳的回答

per isakson
per isakson 2015-3-11
编辑:per isakson 2015-3-11
"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

更多回答(0 个)

标签

Community Treasure Hunt

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

Start Hunting!

Translated by