3

我得到一个像这样的变量字符串:

上午 8 点 45 分

如果是下午,希望将其转换为 24 小时制。这样我就可以放下上午/下午并将其与其他东西一起使用。

我可以像这样很容易地删除上午/下午:

function replaceEnds(string) {
        string = string.replace("am", "");
        string = string.replace("pm", "");
        return string;
    }

但当然,如果我这样做,我不知道字符串是上午还是下午,所以我不知道在字符串上添加 12 小时以使其成为 24 小时。

任何人都知道我该如何解决这个问题?我绝对不能更改从变量中获得的输入,它始终是小时(以 12 小时为单位)、分钟和上午或下午。

4

4 回答 4

6

使用moment.js

moment(string, 'h:mm a').format('H:mm');

如果您想手动执行此操作,这将是我的解决方案:

function to24Hour(str) {
    var tokens = /([10]?\d):([0-5]\d) ([ap]m)/i.exec(str);
    if (tokens == null) { return null; }
    if (tokens[3].toLowerCase() === 'pm' && tokens[1] !== '12') {
        tokens[1] = '' + (12 + (+tokens[1]));
    } else if (tokens[3].toLowerCase() === 'am' && tokens[1] === '12') {
        tokens[1] = '00';
    }
    return tokens[1] + ':' + tokens[2];
}

手动解决方案更难理解,不够灵活,缺少一些错误检查并且需要单元测试。通常,您通常应该更喜欢经过良好测试的流行库的解决方案,而不是您自己的解决方案(如果有经过良好测试的库可用)。

于 2013-07-15T21:26:27.833 回答
6

不使用任何额外的 JavaScript 库:

/**
 * @var amPmString - Time component (e.g. "8:45 PM")
 * @returns - 24 hour time string
 */
function getTwentyFourHourTime(amPmString) { 
    var d = new Date("1/1/2013 " + amPmString); 
    return d.getHours() + ':' + d.getMinutes(); 
}

例如:

getTwentyFourHourTime("8:45 PM"); // "20:45"
getTwentyFourHourTime("8:45 AM"); // "8:45"
于 2013-07-15T21:35:23.800 回答
2

如果您正在寻找将 ANY FORMAT 正确转换为 24 小时 HH:MM 的解决方案。

function get24hTime(str){
    str = String(str).toLowerCase().replace(/\s/g, '');
    var has_am = str.indexOf('am') >= 0;
    var has_pm = str.indexOf('pm') >= 0;
    // first strip off the am/pm, leave it either hour or hour:minute
    str = str.replace('am', '').replace('pm', '');
    // if hour, convert to hour:00
    if (str.indexOf(':') < 0) str = str + ':00';
    // now it's hour:minute
    // we add am/pm back if striped out before 
    if (has_am) str += ' am';
    if (has_pm) str += ' pm';
    // now its either hour:minute, or hour:minute am/pm
    // put it in a date object, it will convert to 24 hours format for us 
    var d = new Date("1/1/2011 " + str);
    // make hours and minutes double digits
    var doubleDigits = function(n){
        return (parseInt(n) < 10) ? "0" + n : String(n);
    };
    return doubleDigits(d.getHours()) + ':' + doubleDigits(d.getMinutes());
}

console.log(get24hTime('6')); // 06:00
console.log(get24hTime('6am')); // 06:00
console.log(get24hTime('6pm')); // 18:00
console.log(get24hTime('6:11pm')); // 18:11
console.log(get24hTime('6:11')); // 06:11
console.log(get24hTime('18')); // 18:00
console.log(get24hTime('18:11')); // 18:11
于 2017-11-03T10:08:37.460 回答
0

我用过类似的东西

//time is an array of [hh] & [mm am/pm] (you can get this by time = time.split(":");
function MilitaryTime(time){
if(time[1].indexOf("AM")!=-1){
//its in the morning, so leave as is
  return time;
}else if(time[0]!="12"){
//If it is beyond 12 o clock in the after noon, add twelve for military time.
  time[0]=String(parseInt(time[0])+12);
  return time;
}
else{
return time;
}
}

一旦你得到你的时间,你可以以任何你想要的方式改变文本。

于 2013-07-15T21:31:26.330 回答