gpt4 book ai didi

javascript - 从字符串中导出每个数字

转载 作者:行者123 更新时间:2023-11-28 12:18:31 25 4
gpt4 key购买 nike

我有一个如下所示的日期时间字符串:

 "1396-12-22 12:33:42"

如何将每个日期数字导出为单个整数,如下所示:

1396
12
22

最佳答案

var res = new Date("1396-12-22 12:33:42")
console.log(res.getFullYear()); // 1396
console.log(res.getMonth() + 1); // 12
console.log(res.getDate()); // 22

console.log(res.getHours()); // 12
console.log(res.getMinutes()); // 33
console.log(res.getSeconds()); // 42

关于javascript - 从字符串中导出每个数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43768580/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com