remove end comma
1 view (last 30 days)
Show older comments
hi,
I have '2005-04-19'
how get 2005-04-19
thanks
0 Comments
Answers (1)
Walter Roberson
on 7 Nov 2011
Do you really have the apostrophes there, or are you just seeing the way that MATLAB displays a string that is stored in a cell array?
If the apostrophes are really there, then
B = A(2:end-1);
4 Comments
Walter Roberson
on 7 Nov 2011
Ah, you changed in and out of date formats for no apparent reason.
This should do the conversion in one step:
c33 = datenum(c{3}, 'yyyy-mm-dd');
See Also
Categories
Find more on Dates and Time in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!