gpt4 book ai didi

javascript - 在javascript中用空格替换日期中的字符

转载 作者:行者123 更新时间:2023-12-02 18:55:12 37 4
gpt4 key购买 nike

我是 javascript 新手。我正在处理一个有字段的 json-

    "updated_time": "2013-03-16T05:33:57+0000",

我想将此字段中的 T 替换为空格。我该怎么做?

最佳答案

String.replace()函数将执行此操作:

Fiddle

//Your JSON string
var json = '{"updated_time": "2013-03-16T05:33:57+0000"}';

//Parse the string into object
var o = JSON.parse(json);

//Replace T in timestamp with space
o["updated_time"] = o["updated_time"].replace('T',' ');

//Show result
alert(o["updated_time"]);

关于javascript - 在javascript中用空格替换日期中的字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15446228/

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