지속 시간, 즉 초 수를 콜론으로 구분 된 시간 문자열 (hh : mm : ss)로 변환하고 싶습니다.
여기서 유용한 답변을 찾았지만 모두 x 시간 및 x 분 형식으로 변환하는 것에 대해 이야기합니다.
jQuery 또는 원시 JavaScript 에서이 작업을 수행하는 작은 스 니펫이 있습니까?
지속 시간, 즉 초 수를 콜론으로 구분 된 시간 문자열 (hh : mm : ss)로 변환하고 싶습니다.
여기서 유용한 답변을 찾았지만 모두 x 시간 및 x 분 형식으로 변환하는 것에 대해 이야기합니다.
jQuery 또는 원시 JavaScript 에서이 작업을 수행하는 작은 스 니펫이 있습니까?
답변:
String.prototype.toHHMMSS = function () {
var sec_num = parseInt(this, 10); // don't forget the second param
var hours = Math.floor(sec_num / 3600);
var minutes = Math.floor((sec_num - (hours * 3600)) / 60);
var seconds = sec_num - (hours * 3600) - (minutes * 60);
if (hours < 10) {hours = "0"+hours;}
if (minutes < 10) {minutes = "0"+minutes;}
if (seconds < 10) {seconds = "0"+seconds;}
return hours+':'+minutes+':'+seconds;
}
이제 다음과 같이 사용할 수 있습니다.
alert("5678".toHHMMSS());
작업 스 니펫 :
다음과 같이 JS Date 메소드를 사용하여 외부 JS 라이브러리 없이이 작업을 수행 할 수 있습니다.
var date = new Date(0);
date.setSeconds(45); // specify value for SECONDS here
var timeString = date.toISOString().substr(11, 8);
console.log(timeString)
new Date(1000 * seconds).toISOString().substr(11, 8)
.
.replace(/^[0:]+/, "")
after substr
를 사용 하여 모든 0을 제거 :
하고 문자열의 시작 부분에서 제거 할 수 있습니다 .
형식으로 시간 부분을 얻으려면 hh:MM:ss
다음 정규식을 사용할 수 있습니다.
(이것은 누군가가 같은 게시물에서 언급 한 덕분입니다.)
var myDate = new Date().toTimeString().replace(/.*(\d{2}:\d{2}:\d{2}).*/, "$1");
console.log(myDate)
var myDate = new Date().toTimeString().replace(/.*(\d{2}:\d{2})(:\d{2}).*/, "$1");
replace
이 혼란 스럽다. 왜 사용하지 new Date(null, null, null, null, null, timeInSeconds).toTimeString().match(/\d{2}:\d{2}:\d{2}/)[0]
않습니까?
new Date().toTimeString().split(" ")[0]
Date 객체를 사용하여 일반적인 자바 스크립트를 권장합니다.
var seconds = 9999;
// multiply by 1000 because Date() requires miliseconds
var date = new Date(seconds * 1000);
var hh = date.getUTCHours();
var mm = date.getUTCMinutes();
var ss = date.getSeconds();
// If you were building a timestamp instead of a duration, you would uncomment the following line to get 12-hour (not 24) time
// if (hh > 12) {hh = hh % 12;}
// These lines ensure you have two-digits
if (hh < 10) {hh = "0"+hh;}
if (mm < 10) {mm = "0"+mm;}
if (ss < 10) {ss = "0"+ss;}
// This formats your string to HH:MM:SS
var t = hh+":"+mm+":"+ss;
document.write(t);
(물론 생성 된 Date 객체에는 실제 날짜가 연결되어 있지만 해당 데이터는 관련이 없으므로 이러한 목적으로 걱정할 필요가 없습니다.)
date.getUTCHours()
및 date.getUTCMinutes()
.
구글 검색 결과는 다음과 같습니다.
function secondsToTime(secs)
{
secs = Math.round(secs);
var hours = Math.floor(secs / (60 * 60));
var divisor_for_minutes = secs % (60 * 60);
var minutes = Math.floor(divisor_for_minutes / 60);
var divisor_for_seconds = divisor_for_minutes % 60;
var seconds = Math.ceil(divisor_for_seconds);
var obj = {
"h": hours,
"m": minutes,
"s": seconds
};
return obj;
}
secondsToTime(119.9)
=> Object {h: 0, m: 1, s: 60}
. 이 문제를 해결하려면 secs = Math.round(secs);
메소드 시작 부분에 추가하십시오 . 물론 데모
테마의 변형. 한 자릿수 초를 조금 다르게 처리
seconds2time(0) -> "0s"
seconds2time(59) -> "59s"
seconds2time(60) -> "1:00"
seconds2time(1000) -> "16:40"
seconds2time(4000) -> "1:06:40"
function seconds2time (seconds) {
var hours = Math.floor(seconds / 3600);
var minutes = Math.floor((seconds - (hours * 3600)) / 60);
var seconds = seconds - (hours * 3600) - (minutes * 60);
var time = "";
if (hours != 0) {
time = hours+":";
}
if (minutes != 0 || time !== "") {
minutes = (minutes < 10 && time !== "") ? "0"+minutes : String(minutes);
time += minutes+":";
}
if (time === "") {
time = seconds+"s";
}
else {
time += (seconds < 10) ? "0"+seconds : String(seconds);
}
return time;
}
여기에 내가 가져 가라.
function formatTime(seconds) {
const h = Math.floor(seconds / 3600);
const m = Math.floor((seconds % 3600) / 60);
const s = Math.round(seconds % 60);
return [
h,
m > 9 ? m : (h ? '0' + m : m || '0'),
s > 9 ? s : '0' + s
].filter(Boolean).join(':');
}
예상 결과 :
const expect = require('expect');
expect(formatTime(0)).toEqual('0:00');
expect(formatTime(1)).toEqual('0:01');
expect(formatTime(599)).toEqual('9:59');
expect(formatTime(600)).toEqual('10:00');
expect(formatTime(3600)).toEqual('1:00:00');
expect(formatTime(360009)).toEqual('100:00:09');
expect(formatTime(0.2)).toEqual('0:00');
const formatTime = (seconds, h = Math.floor(seconds / 3600), m = Math.floor((seconds % 3600) / 60), s = seconds % 60) => [h, m > 9 ? m : '0' + m, s > 9 ? s : '0' + s].filter(s => s).join(':');
second
인수 를 취하는 함수를 갖는 것이 약간 혼란 스럽습니다 . 좀 더 장황하더라도 내 버전이 더 깨끗합니다.
seconds: number
es6에서 유형 주석?
const s = Math.round(seconds % 60);
나는 첫 번째 대답을 좋아한다. 몇 가지 최적화가 있습니다.
소스 데이터는 숫자입니다. 추가 계산이 필요하지 않습니다.
훨씬 더 많은 컴퓨팅
결과 코드 :
Number.prototype.toHHMMSS = function () {
var seconds = Math.floor(this),
hours = Math.floor(seconds / 3600);
seconds -= hours*3600;
var minutes = Math.floor(seconds / 60);
seconds -= minutes*60;
if (hours < 10) {hours = "0"+hours;}
if (minutes < 10) {minutes = "0"+minutes;}
if (seconds < 10) {seconds = "0"+seconds;}
return hours+':'+minutes+':'+seconds;
}
Number
하기 때문 맞다 seconds
, 사실, 숫자입니다. 이 기능을 사용하기 전에 문자열에서 변환해야합니다.
놀라운 moment.js 라이브러리 사용 :
function humanizeDuration(input, units ) {
// units is a string with possible values of y, M, w, d, h, m, s, ms
var duration = moment().startOf('day').add(units, input),
format = "";
if(duration.hour() > 0){ format += "H [hours] "; }
if(duration.minute() > 0){ format += "m [minutes] "; }
format += " s [seconds]";
return duration.format(format);
}
이를 통해 시간, 분, 초, 밀 등의 지속 시간을 지정할 수 있으며 사람이 읽을 수있는 버전을 반환합니다.
function formatTime(seconds) {
return [
parseInt(seconds / 60 / 60),
parseInt(seconds / 60 % 60),
parseInt(seconds % 60)
]
.join(":")
.replace(/\b(\d)\b/g, "0$1")
}
new Date().toString().split(" ")[4];
결과 15:08:03
new Date(new Date().getTime() - startTime).toUTCString().split(" ")[4]
startTime
startTime = new Date().getTime();
toUTCString()
꽤 쉽습니다.
function toTimeString(seconds) {
return (new Date(seconds * 1000)).toUTCString().match(/(\d\d:\d\d:\d\d)/)[0];
}
나는 Webjins가 가장 많이 대답하는 것을 좋아 했으므로 광고 접미사로 일을 표시하도록 확장하고 조건부로 표시하고 일반 초에 접미사로 포함했습니다.
function sec2str(t){
var d = Math.floor(t/86400),
h = ('0'+Math.floor(t/3600) % 24).slice(-2),
m = ('0'+Math.floor(t/60)%60).slice(-2),
s = ('0' + t % 60).slice(-2);
return (d>0?d+'d ':'')+(h>0?h+':':'')+(m>0?m+':':'')+(t>60?s:s+'s');
}
"3d 16:32:12"또는 "16:32:12"또는 "32:12"또는 "12s"를 반환합니다.
나는 Powtac의 답변을 좋아했지만 angular.js에서 사용하고 싶었으므로 코드를 사용하여 필터를 만들었습니다.
.filter('HHMMSS', ['$filter', function ($filter) {
return function (input, decimals) {
var sec_num = parseInt(input, 10),
decimal = parseFloat(input) - sec_num,
hours = Math.floor(sec_num / 3600),
minutes = Math.floor((sec_num - (hours * 3600)) / 60),
seconds = sec_num - (hours * 3600) - (minutes * 60);
if (hours < 10) {hours = "0"+hours;}
if (minutes < 10) {minutes = "0"+minutes;}
if (seconds < 10) {seconds = "0"+seconds;}
var time = hours+':'+minutes+':'+seconds;
if (decimals > 0) {
time += '.' + $filter('number')(decimal, decimals).substr(2);
}
return time;
};
}])
선택적 소수 자릿수 필드를 추가하여 소수 초를 표시한다는 점을 제외하고는 기능적으로 동일합니다. 다른 필터처럼 사용하십시오.
{{ elapsedTime | HHMMSS }}
표시합니다 : 01:23:45
{{ elapsedTime | HHMMSS : 3 }}
표시합니다 : 01:23:45.678
성능이 현명하다고 생각합니다.
var t = 34236; // your seconds
var time = ('0'+Math.floor(t/3600) % 24).slice(-2)+':'+('0'+Math.floor(t/60)%60).slice(-2)+':'+('0' + t % 60).slice(-2)
//would output: 09:30:36
function toHHMMSS(seconds) {
var h, m, s, result='';
// HOURs
h = Math.floor(seconds/3600);
seconds -= h*3600;
if(h){
result = h<10 ? '0'+h+':' : h+':';
}
// MINUTEs
m = Math.floor(seconds/60);
seconds -= m*60;
result += m<10 ? '0'+m+':' : m+':';
// SECONDs
s=seconds%60;
result += s<10 ? '0'+s : s;
return result;
}
예
toHHMMSS (111); "01:51" toHHMMSS (4444); "01:14:04" toHHMMSS (33); "00:33"
Math.floor()
그들은 소수에 제시 될 수 있기 때문에뿐만 아니라 초에. (나와 함께 생겼다.)
요일도 처리하는 또 다른 버전이 있습니다.
function FormatSecondsAsDurationString( seconds )
{
var s = "";
var days = Math.floor( ( seconds / 3600 ) / 24 );
if ( days >= 1 )
{
s += days.toString() + " day" + ( ( days == 1 ) ? "" : "s" ) + " + ";
seconds -= days * 24 * 3600;
}
var hours = Math.floor( seconds / 3600 );
s += GetPaddedIntString( hours.toString(), 2 ) + ":";
seconds -= hours * 3600;
var minutes = Math.floor( seconds / 60 );
s += GetPaddedIntString( minutes.toString(), 2 ) + ":";
seconds -= minutes * 60;
s += GetPaddedIntString( Math.floor( seconds ).toString(), 2 );
return s;
}
function GetPaddedIntString( n, numDigits )
{
var nPadded = n;
for ( ; nPadded.length < numDigits ; )
{
nPadded = "0" + nPadded;
}
return nPadded;
}
정규식을 사용 toString()
하여 Date 객체 의 메서드 에서 반환 된 문자열의 시간 하위 문자열을 일치시킬 수 있습니다 . "Thu Jul 05 2012 02:45:12 GMT + 0100 (GMT 일광 절약 시간)" 이 솔루션은 1970 년 1 월 1 일 자정 이후의 신기원 이후의 시간을 사용합니다.이 솔루션은 하나의 라이너 일 수 있지만 분리하면 훨씬 쉽게 이해할 수 있습니다.
function secondsToTime(seconds) {
const start = new Date(1970, 1, 1, 0, 0, 0, 0).getTime();
const end = new Date(1970, 1, 1, 0, 0, parseInt(seconds), 0).getTime();
const duration = end - start;
return new Date(duration).toString().replace(/.*(\d{2}:\d{2}:\d{2}).*/, "$1");
}
내가 한 방법은 다음과 같습니다. 상당히 잘 작동하는 것으로 보이며 매우 컴팩트합니다. (하지만 많은 삼항 연산자를 사용합니다)
function formatTime(seconds) {
var hh = Math.floor(seconds / 3600),
mm = Math.floor(seconds / 60) % 60,
ss = Math.floor(seconds) % 60;
return (hh ? (hh < 10 ? "0" : "") + hh + ":" : "") + ((mm < 10) && hh ? "0" : "") + mm + ":" + (ss < 10 ? "0" : "") + ss
}
... 문자열 서식 지정 ...
String.prototype.toHHMMSS = function() {
formatTime(parseInt(this, 10))
};
다음 함수를 사용하여 시간 (초)을 HH:MM:SS
형식 으로 변환 할 수 있습니다 .
var convertTime = function (input, separator) {
var pad = function(input) {return input < 10 ? "0" + input : input;};
return [
pad(Math.floor(input / 3600)),
pad(Math.floor(input % 3600 / 60)),
pad(Math.floor(input % 60)),
].join(typeof separator !== 'undefined' ? separator : ':' );
}
구분자를 전달하지 않고 :
(기본) 구분자로 사용합니다.
time = convertTime(13551.9941351); // --> OUTPUT = 03:45:51
-
구분자 로 사용 하려면 두 번째 매개 변수로 전달하십시오.
time = convertTime(1126.5135155, '-'); // --> OUTPUT = 00-18-46
var convertTime = function (input, separator) {
var pad = function(input) {return input < 10 ? "0" + input : input;};
return [
pad(Math.floor(input / 3600)),
pad(Math.floor(input % 3600 / 60)),
pad(Math.floor(input % 60)),
].join(typeof separator !== 'undefined' ? separator : ':' );
}
document.body.innerHTML = '<pre>' + JSON.stringify({
5.3515555 : convertTime(5.3515555),
126.2344452 : convertTime(126.2344452, '-'),
1156.1535548 : convertTime(1156.1535548, '.'),
9178.1351559 : convertTime(9178.1351559, ':'),
13555.3515135 : convertTime(13555.3515135, ',')
}, null, '\t') + '</pre>';
이 바이올린을 참조하십시오 .
블록에 문자열을위한 새로운 방법이 있습니다 : padStart
const str = '5';
str.padStart(2, '0'); // 05
다음은 샘플 사용 사례입니다. 4 줄 JavaScript의 YouTube 길이
개인적으로 선행 0이없는 주요 단위 (일, 시간, 분)를 선호합니다. 그러나 초는 항상 분 단위로 시작해야하며 (0:13),이 프리젠 테이션은 추가 설명 (분, 초 등으로 표시)없이 다양한 언어 (국제화)로 사용할 수있는 '지속 기간'으로 쉽게 간주됩니다.
// returns (-)d.h:mm:ss(.f)
// (-)h:mm:ss(.f)
// (-)m:ss(.f)
function formatSeconds (value, fracDigits) {
var isNegative = false;
if (isNaN(value)) {
return value;
} else if (value < 0) {
isNegative = true;
value = Math.abs(value);
}
var days = Math.floor(value / 86400);
value %= 86400;
var hours = Math.floor(value / 3600);
value %= 3600;
var minutes = Math.floor(value / 60);
var seconds = (value % 60).toFixed(fracDigits || 0);
if (seconds < 10) {
seconds = '0' + seconds;
}
var res = hours ? (hours + ':' + ('0' + minutes).slice(-2) + ':' + seconds) : (minutes + ':' + seconds);
if (days) {
res = days + '.' + res;
}
return (isNegative ? ('-' + res) : res);
}
// 서버 측 (.net, C #) 지속 시간 형식 모방 :
public static string Format(this TimeSpan interval)
{
string pattern;
if (interval.Days > 0) pattern = @"d\.h\:mm\:ss";
else if (interval.Hours > 0) pattern = @"h\:mm\:ss";
else pattern = @"m\:ss";
return string.Format("{0}", interval.ToString(pattern));
}
Moment.duration 형식 플러그인 과 함께 Momement.js 를 사용할 수 있습니다 .
var seconds = 3820;
var duration = moment.duration(seconds, 'seconds');
var formatted = duration.format("hh:mm:ss");
console.log(formatted); // 01:03:40
<!-- Moment.js library -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.18.1/moment.min.js"></script>
<!-- moment-duration-format plugin -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment-duration-format/1.3.0/moment-duration-format.min.js"></script>
이 피들 참조
secToHHMM(number: number) {
debugger;
let hours = Math.floor(number / 3600);
let minutes = Math.floor((number - (hours * 3600)) / 60);
let seconds = number - (hours * 3600) - (minutes * 60);
let H, M, S;
if (hours < 10) H = ("0" + hours);
if (minutes < 10) M = ("0" + minutes);
if (seconds < 10) S = ("0" + seconds);
return (H || hours) + ':' + (M || minutes) + ':' + (S || seconds);
}
2019 년 업데이트 된 한 줄짜리 제품이 있습니다 :
//your date
var someDate = new Date("Wed Jun 26 2019 09:38:02 GMT+0100")
var result = `${String(someDate.getHours()).padStart(2,"0")}:${String(someDate.getMinutes()).padStart(2,"0")}:${String(someDate.getSeconds()).padStart(2,"0")}`
//result will be "09:38:02"
Date
합니다.
가장 가까운 초로 반올림하는 매우 간단한 솔루션이 있습니다!
var returnElapsedTime = function(epoch) {
//We are assuming that the epoch is in seconds
var hours = epoch / 3600,
minutes = (hours % 1) * 60,
seconds = (minutes % 1) * 60;
return Math.floor(hours) + ":" + Math.floor(minutes) + ":" + Math.round(seconds);
}
이것은 내가 MM : SS를 위해 최근에 쓴 것입니다. 그것은 정확한 질문은 아니지만 다른 한 줄짜리 형식입니다.
const time = 60 * 2 + 35; // 2 minutes, 35 seconds
const str = (~~(time / 60) + "").padStart(2, '0') + ":" + (~~((time / 60) % 1 * 60) + "").padStart(2, '0');
str // 02:35
편집 : 이것은 다양성을 위해 추가되었지만 여기서 가장 좋은 해결책은 아래 https://stackoverflow.com/a/25279399/639679 입니다.