remove end comma

1 vue (au cours des 30 derniers jours)
huda nawaf
huda nawaf le 7 Nov 2011
hi,
I have '2005-04-19'
how get 2005-04-19
thanks

Réponses (1)

Walter Roberson
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
huda nawaf
huda nawaf le 7 Nov 2011
I got this error:
??? DATENUM failed.
Failed on converting date string to date number.
>> that because datenum work with datestr y which convert the date into 07-Nov-2011.then use datenum
thaks
Walter Roberson
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');

Connectez-vous pour commenter.

Catégories

En savoir plus sur Dates and Time dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by