gpt4 book ai didi

javascript - 如何替换字符串的特定部分?

转载 作者:行者123 更新时间:2023-11-30 07:01:54 25 4
gpt4 key购买 nike

字符串看起来像 2017-08-01T00:00:00.000Z

我想保留日期 2017-08-01,我会阻止使用 replaceAT!

date.replace(date.substr(date.indexOf("T00")),""); 
// I also tried RegExp like +"/g"

最佳答案

var d = new Date('2017-08-01T00:00:00.000Z');

d.getFullYear(); // 2017
d.getMonth() + 1; // 8
d.getDate(); // 1

关于javascript - 如何替换字符串的特定部分?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45637369/

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