I have a string with a date in it formatted like so: YYYYMMDDHHMMSS. I was wondering how I would convert it into a JavaScript Date object with JavaScript.
Thanks in advance!
|
I have a string with a date in it formatted like so: YYYYMMDDHHMMSS. I was wondering how I would convert it into a JavaScript Date object with JavaScript. Thanks in advance! |
|||
|
|
|
How about this for a wacky way to do it:
Zero external libraries, one line of code ;-) Explanation of the original method :
The for example:
I've just now realised that this function doesn't actually work, since javascript months are zero-indexed. You could still do it in a similar method, but there'd be an intermediate step, subtracting one from the array before passing it to the constructor. I've left it here, since it was asked about in the comments. The other option works as expected however. |
|||||||||||||
|
|
I find DateJS the best library for anything that has to do with converting, parsing and using dates in JavaScript. If you need that kind of conversions more often you should really consider using it in your application:
|
|||
|
|
|
Primitive version:
An explicit conversion of the strings to numbers is unnecessary: the |
|||
|
|
|
Date functions from this library can help: http://javascripttoolbox.com/lib/date/ , it's free and very simple to use. If you want to do it yourself, I would suggest looking up the javascript regular expressions, as I guess that is the way to achieve this best |
|||
|
|
|
There is no time zone information in your string. It most likely is GMT, so that should be accounted for when you make the Date. You can easily do the conversion with simple javascript methods.
|
||||
|
|