What is the best way to parse a time into a Date object from user input in Javascript? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-24T02:40:39Z http://stackoverflow.com/feeds/question/141348 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/141348/what-is-the-best-way-to-parse-a-time-into-a-date-object-from-user-input-in-javasc 6 What is the best way to parse a time into a Date object from user input in Javascript? Joe Lencioni 2008-09-26T19:13:02Z 2009-01-11T11:43:47Z <p>I am working on a form widget for users to enter a time of day into a text input (for a calendar application). Using JavaScript (we are using jQuery FWIW), I want to find the best way to parse the text that the user enters into a JavaScript <code>Date()</code> object so I can easily perform comparisons and other things on it.</p> <p>I tried the <code>parse()</code> method and it is a little too picky for my needs. I would expect it to be able to successfully parse the following example input times (in addition to other logically similar time formats) as the same <code>Date()</code> object:</p> <ul> <li>1:00 pm</li> <li>1:00 p.m.</li> <li>1:00 p</li> <li>1:00pm</li> <li>1:00p.m.</li> <li>1:00p</li> <li>1 pm</li> <li>1 p.m.</li> <li>1 p</li> <li>1pm</li> <li>1p.m.</li> <li>1p</li> <li>13:00</li> <li>13</li> </ul> <p>I am thinking that I might use regular expressions to split up the input and extract the information I want to use to create my <code>Date()</code> object. What is the best way to do this?</p> http://stackoverflow.com/questions/141348/what-is-the-best-way-to-parse-a-time-into-a-date-object-from-user-input-in-javasc/141383#141383 6 Answer by Jim for What is the best way to parse a time into a Date object from user input in Javascript? Jim 2008-09-26T19:18:52Z 2008-09-26T19:18:52Z <p>Don't bother doing it yourself, just use <a href="http://www.datejs.com/" rel="nofollow">datejs</a>.</p> http://stackoverflow.com/questions/141348/what-is-the-best-way-to-parse-a-time-into-a-date-object-from-user-input-in-javasc/141486#141486 0 Answer by Wayne for What is the best way to parse a time into a Date object from user input in Javascript? Wayne 2008-09-26T19:40:51Z 2008-09-26T19:40:51Z <p>Why not use validation to narrow down what a user can put in and simplify the list to only include formats that can be parsed (or parsed after some tweaking).</p> <p>I don't think it's asking too much to require a user to put a time in a supported format.</p> <p>dd:dd A(m)/P(m)</p> <p>dd A(m)/P(m)</p> <p>dd</p> http://stackoverflow.com/questions/141348/what-is-the-best-way-to-parse-a-time-into-a-date-object-from-user-input-in-javasc/141504#141504 20 Answer by John Resig for What is the best way to parse a time into a Date object from user input in Javascript? John Resig 2008-09-26T19:44:31Z 2008-11-02T16:00:32Z <p>A quick solution which works on the input that you've specified:</p> <pre><code>var times = ['1:00 pm','1:00 p.m.','1:00 p','1:00pm', '1:00p.m.','1:00p','1 pm','1 p.m.','1 p','1pm','1p.m.', '1p','13:00','13']; for ( var i = 0; i &lt; times.length; i++ ) { var d = new Date(); var time = times[i].match(/(\d+)(?::(\d\d))?\s*(p?)/); d.setHours( parseInt(time[1]) + (time[3] ? 12 : 0) ); d.setMinutes( parseInt(time[2]) || 0 ); console.log( d ); } </code></pre> <p>It should work for a few other varieties as well (even if a.m. is used, it'll still work - for example). Obviously this is pretty crude but it's also pretty lightweight (much cheaper to use that than a full library, for example).</p> http://stackoverflow.com/questions/141348/what-is-the-best-way-to-parse-a-time-into-a-date-object-from-user-input-in-javasc/142506#142506 1 Answer by Andrew Hedges for What is the best way to parse a time into a Date object from user input in Javascript? Andrew Hedges 2008-09-26T23:43:31Z 2008-09-26T23:43:31Z <p>Just to suggest an alternative, you could use an Ajax call to send the input to a server-side PHP script, parse the sucker using <code>strtotime</code> and send back a timestamp.</p> http://stackoverflow.com/questions/141348/what-is-the-best-way-to-parse-a-time-into-a-date-object-from-user-input-in-javasc/253680#253680 3 Answer by Joe Lencioni for What is the best way to parse a time into a Date object from user input in Javascript? Joe Lencioni 2008-10-31T14:21:17Z 2008-10-31T14:21:17Z <p>I came across a couple of kinks in implementing John Resig's solution. Here is the modified function that I have been using based on his answer:</p> <pre><code>function parseTime(timeString) { if (timeString == '') return null; var d = new Date(); var time = timeString.match(/(\d+)(:(\d\d))?\s*(p?)/); d.setHours( parseInt(time[1]) + ( ( parseInt(time[1]) &lt; 12 &amp;&amp; time[4] ) ? 12 : 0) ); d.setMinutes( parseInt(time[3]) || 0 ); d.setSeconds(0, 0); return d; } // parseTime() </code></pre> http://stackoverflow.com/questions/141348/what-is-the-best-way-to-parse-a-time-into-a-date-object-from-user-input-in-javasc/338439#338439 0 Answer by Patrick McElhaney for What is the best way to parse a time into a Date object from user input in Javascript? Patrick McElhaney 2008-12-03T19:33:01Z 2008-12-03T19:33:01Z <p>Here's an improvement on <a href="http://#253680" rel="nofollow">Joe's version</a>. Feel free to edit it further.</p> <pre><code>parseTime(timeString) { if (timeString == '') return null; var d = new Date(); var time = timeString.match(/(\d+)(:(\d\d))?\s*(p?)/i); d.setHours( parseInt(time[1],10) + ( ( parseInt(time[1],10) &lt; 12 &amp;&amp; time[4] ) ? 12 : 0) ); d.setMinutes( parseInt(time[3],10) || 0 ); d.setSeconds(0, 0); return d; } </code></pre> <p>Changes:</p> <ul> <li>Added radix parameter to the parseInt() calls (so jslint won't complain). </li> <li>Made the regex case-insenstive so "2:23 PM" works like "2:23 pm"</li> </ul> http://stackoverflow.com/questions/141348/what-is-the-best-way-to-parse-a-time-into-a-date-object-from-user-input-in-javasc/432785#432785 0 Answer by Gustavo Brian for What is the best way to parse a time into a Date object from user input in Javascript? Gustavo Brian 2009-01-11T11:43:47Z 2009-01-11T11:43:47Z <p>Hi, a bit change</p> <p>/(\d+)(?::(\d\d))(?::(\d\d))?\s*([pP]?)/ </p> <p>// added test for p or P // added seconds</p> <p>d.setHours( parseInt(time[1]) + (time[4] ? 12 : 0) ); // care with new indexes d.setMinutes( parseInt(time[2]) || 0 ); d.setSeconds( parseInt(time[3]) || 0 );</p> <p>thanks</p>