最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Convert minutes ( string ) to ISO 8601 duration format - Stack Overflow

programmeradmin1浏览0评论

I always store my minutes in a plain string format saying "90" for 90 minutes. I want to convert this to ISO 8601 duration format for schema standard.

E.g "90" should be converted to PT1H30M

I always store my minutes in a plain string format saying "90" for 90 minutes. I want to convert this to ISO 8601 duration format for schema standard.

E.g "90" should be converted to PT1H30M

Share Improve this question asked Sep 20, 2018 at 10:28 JoelgullanderJoelgullander 1,6842 gold badges22 silver badges51 bronze badges 3
  • 1 "PT90M" is valid according to ISO 8601, if that makes it simpler for you. – Andrew Morton Commented Sep 20, 2018 at 10:35
  • Do you want to do this in vanilla JavaScript or are you open to using libraries? – VLAZ Commented Sep 20, 2018 at 10:36
  • @vlaz vanilla/es6 or moment.js – Joelgullander Commented Sep 20, 2018 at 10:40
Add a ment  | 

1 Answer 1

Reset to default 10

In case whatever is going to read the interval isn't happy with values like PT90M, you can do something like this:

function MinutesToDuration(s) {
    var days = Math.floor(s / 1440);
    s = s - days * 1440;
    var hours = Math.floor(s / 60);
    s = s - hours * 60;

    var dur = "PT";
    if (days > 0) {dur += days + "D"};
    if (hours > 0) {dur += hours + "H"};
    dur += s + "M"

    return dur;
}

console.log(MinutesToDuration("0"));
console.log(MinutesToDuration("10"));
console.log(MinutesToDuration("90"));
console.log(MinutesToDuration(1000));
console.log(MinutesToDuration(10000));

Outputs:

PT0M
PT10M
PT1H30M
PT16H40M
PT6D22H40M

发布评论

评论列表(0)

  1. 暂无评论