Open cdebix opened 7 years ago
Date.parse('sam. 01 avril 2017') or Date.parse('mar. 01 août 2017') both return null
Date.parse('sam. 01 avril 2017')
Date.parse('mar. 01 août 2017')
while Date.parse('mer. 01 mars 2017') (and any other month except april and august) properly returns Wed Mar 01 2017 00:00:00 GMT+0100 (Paris, Madrid)
Date.parse('mer. 01 mars 2017')
Also noticed that Date.parse('sam 01 avril 2017') (minus the .) or Date.parse('sa. 01 avril 2017') DO work though.
Date.parse('sam 01 avril 2017')
Date.parse('sa. 01 avril 2017')
I can't find a fault in the locale regex...
Date.parse('sam. 01 avril 2017')
orDate.parse('mar. 01 août 2017')
both return nullwhile
Date.parse('mer. 01 mars 2017')
(and any other month except april and august) properly returns Wed Mar 01 2017 00:00:00 GMT+0100 (Paris, Madrid)Also noticed that
Date.parse('sam 01 avril 2017')
(minus the .) orDate.parse('sa. 01 avril 2017')
DO work though.I can't find a fault in the locale regex...