Reputation: 1749
I've a JSON like this ...
{
"d": {
"__count": "5798",
"results": [{
"time": "\/Date(1467039720000+0120)\/",
"internalId": "5771271b84aed43d477c901b",
"datasetVersion": 3,
"idDataset": "1214",
}, {
"time": "\/Date(1467036120000+0120)\/",
"internalId": "577118c784aed43d477bdf90",
"datasetVersion": 3,
"idDataset": "1215",
.....
and I'd like to extract and convert the time in a format like gg-mm-aaaa using javascript (or PHP if necessary ...).
Note that I know that "+120" are minutes ... so 2 hours.
Is there any javascript library or code sample to make this transformation?
Upvotes: 0
Views: 844
Reputation: 986
Try This
function FormatDate(value) {
var pattern = /Date\(([^)]+)\)/;
var results = pattern.exec(value);
var dt = new Date(parseFloat(results[1]));
console.log(dt);
console.log(dt.getMonth());
console.log((dt.getMonth() + 1) + "/" + dt.getDate() + "/" + dt.getFullYear());
}
For example
FormatDate("/Date(1467039720000+0120)/");
Output:
Mon Jun 27 2016 11:02:00 GMT-0400 (US Eastern Daylight Time)
VM64:50 5
VM64:51 6/27/2016
Here is the fiddle link:
https://jsfiddle.net/jkqm4ej3/
Upvotes: 1
Reputation: 123
Moment JS is a very good library for dealing with time / dates. You'll probably need to parse out the string value in your JSON to send it to moment though. http://momentjs.com/
Upvotes: 2