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

时间:2013-03-16 06:18:39

标签: javascript date

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

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

我想用此字段中的空格替换T. 我怎么能这样做?

1 个答案:

答案 0 :(得分:2)

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"]);