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.com2009-11-24T02:40:39Zhttp://stackoverflow.com/feeds/question/141348http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/141348/what-is-the-best-way-to-parse-a-time-into-a-date-object-from-user-input-in-javasc6What is the best way to parse a time into a Date object from user input in Javascript?Joe Lencioni2008-09-26T19:13:02Z2009-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#1413836Answer by Jim for What is the best way to parse a time into a Date object from user input in Javascript?Jim2008-09-26T19:18:52Z2008-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#1414860Answer by Wayne for What is the best way to parse a time into a Date object from user input in Javascript?Wayne2008-09-26T19:40:51Z2008-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#14150420Answer by John Resig for What is the best way to parse a time into a Date object from user input in Javascript?John Resig2008-09-26T19:44:31Z2008-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 < 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#1425061Answer by Andrew Hedges for What is the best way to parse a time into a Date object from user input in Javascript?Andrew Hedges2008-09-26T23:43:31Z2008-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#2536803Answer by Joe Lencioni for What is the best way to parse a time into a Date object from user input in Javascript?Joe Lencioni2008-10-31T14:21:17Z2008-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]) < 12 && 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#3384390Answer by Patrick McElhaney for What is the best way to parse a time into a Date object from user input in Javascript?Patrick McElhaney2008-12-03T19:33:01Z2008-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) < 12 && 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#4327850Answer by Gustavo Brian for What is the best way to parse a time into a Date object from user input in Javascript?Gustavo Brian2009-01-11T11:43:47Z2009-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>