remove end comma

1 view (last 30 days)
huda nawaf
huda nawaf on 7 Nov 2011
hi,
I have '2005-04-19'
how get 2005-04-19
thanks

Answers (1)

Walter Roberson
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
huda nawaf
huda nawaf on 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 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');

Sign in to comment.

Categories

Find more on Dates and Time in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!