- For individual users
- Instant access to solutions
- Ask your tech questions
- Start your 30-day Free Trial
Main Topics
Browse All TopicsI got this function off of this site from an expert but it's flawed.
For example:
12:00 AM is returning 12:00, when it actually should be returning 00:00.
It's pretty screwed up.. I can post my conversion code for doing Military to Standard if that helps.
Thanks
function to_military( val ) {
var pm = 0, hour = 0, min = 0;
if( val.search( /PM/i ) >= 0 )
pm = 12, val = val.replace( /PM/i, "" );
if( val.search( /AM/i ) >= 0 )
val = val.replace( /AM/i, "" );
var vals = val.split( /[^0-9]+/ );
hour = parseInt( vals[ 0 ] );
if( hour > 24 ) hour = 0;
if( hour <= 12 ) hour = ( hour + pm ) % 24;
if( hour < 10 ) hour = "0" + hour;
min = ( vals.length > 1 ) ? parseInt( vals[ 1 ] ) : 0;
if( min < 10 ) min = "0" + min;
return hour + ":" + min;
}
Here's some easy test code to copy/paste so you can test.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html
<html>
<head>
</head>
<body>
<script>
function to_military( val ) {
var pm = 0, hour = 0, min = 0;
if( val.search( /PM/i ) >= 0 )
pm = 12, val = val.replace( /PM/i, "" );
if( val.search( /AM/i ) >= 0 )
val = val.replace( /AM/i, "" );
var vals = val.split( /[^0-9]+/ );
hour = parseInt( vals[ 0 ] );
if( hour > 24 ) hour = 0;
if( hour <= 12 ) hour = ( hour + pm ) % 24;
if( hour < 10 ) hour = "0" + hour;
min = ( vals.length > 1 ) ? parseInt( vals[ 1 ] ) : 0;
if( min < 10 ) min = "0" + min;
return hour + ":" + min;
}
</script>
<table>
<tr>
<td>from standard <input
</tr>
</table>
</body>
</html>
This question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Business Accounts
Answer for Membership