jalaali / moment-jalaali

A Jalaali (Jalali, Persian, Khorshidi, Shamsi) calendar system plugin for moment.js.
MIT License
936 stars 162 forks source link

convert multiple format to miladi #166

Open RezaErfani67 opened 5 years ago

RezaErfani67 commented 5 years ago

how can i convert jalali date (with any formats) to miladi?

moment(date,'jYY-jMM-jDD').format('yyyy-MM-DD');

moment(date,'jYYYY-jMM-jDD').format('yyyy-MM-DD');

moment(date,'jYY/jM/jD').format('yyyy-MM-DD');
alitaheri commented 5 years ago

@RezaErfani67 That's not possible, your best bet is to go through all possible formats for your data, and provide an array of formats to moment.

RezaErfani67 commented 5 years ago

but in reverse mode i can... moment(miladiDate).format('jYYYY-jMM-jDD');

if i pass 1 parameter to moment() and not specifying second parameter... it convert all formats to jalali...