remove end comma
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
hi,
I have '2005-04-19'
how get 2005-04-19
thanks
0 commentaires
Réponses (1)
Walter Roberson
le 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 commentaires
Walter Roberson
le 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');
Voir également
Catégories
En savoir plus sur Dates and Time dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!