如何使用javascript将格式为“hhmmss”的数字转换为时间格式hh:mm:ss?

时间:2016-10-26 11:21:59

标签: javascript string time time-format

我有类似080000的字符串,我想使用javascript或jquery将其更改为时间格式,如08:00:00(类似字符串的日期格式)。我该怎么做才能做到这一点?

1 个答案:

答案 0 :(得分:2)

您可以使用String.prototype.match()中的regex轻松地将字符串拆分为两位数字,以返回数组中的值。然后使用Array.prototype.join()将数组项连接到字符串中。

var str = "080000";
str = str.match(/\d{2}/g).join(":");
console.log(str);