datestr format in lower case
9 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hello all, I want to express my serial date number in the form of 'ddd, mmm, yyyy', with ddd and mmm in lower case, but matlab is giving me back the date with the first letter of the day/month capitalized. How can I change it to lower case?
0 commentaires
Réponse acceptée
Plus de réponses (2)
Jan
le 19 Avr 2011
lowerDate = lower(datestr(now, 'ddd, mmm, yyyy'))
Or much faster with manual conversion:
function Str = DateStrFormat(Num)
month = ['jan'; 'feb'; 'mar'; 'apr'; 'may'; 'jun'; ...
'jul'; 'aug'; 'sep'; 'oct'; 'nov'; 'dec'];
day = ['mon'; 'tue'; 'wed'; 'thu'; 'fri'; 'sat', 'sun'];
[y, m, d] = datevecmx(Num);
Str = sprintf('%s, %s, %.4d', ...
day(rem(floor(Num), 7) + 1), month(m), y);
0 commentaires
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!