Top "Iso8601" questions

ISO 8601 is the International Standards Organization's standard for representing time as a string.

python ISO 8601 date format

i'm trying to format the date like this, 2015-12-02T12:57:17+00:00 here's my code time.strftime("%Y-%m-%dT%H:%…

python iso8601 strftime
Unmarshal incorrectly formatted datetime

Background I am learning Go and I'm trying to do some JSON unmarshaling of a datetime. I have some JSON …

json datetime go iso8601 rfc3339
Does Javascript/EcmaScript3 support ISO8601 date parsing?

How are you currently parsing ISO8601 dates e.g. 2010-02-23T23:04:48Z in JavaScript? Some browsers return NaN (including …

javascript datetime iso8601
Converting iso8601 date to unix timestamp in java

I have a date string String s = "2014-09-01T19:22:43.000Z"; Date date = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSSZ").parse(…

java datetime iso8601
How to get week number and year from date in R

I am trying to get both week number and year from a date object in R. Until then, I did …

r date lubridate iso8601 week-number
Current time in ISO 8601 format

For logging purposes, how can an R script get the current date and time, in the UTC time zone, as …

r iso8601
Can strict JSON $dates be used in a MongoDB query?

I'm trying to write a date comparison query using MongoDB's strict JSON representation of BSON. I'd like it to work …

mongodb date bson epoch iso8601
How to parse an ISO-8601 duration in Objective C?

I'm looking for an easy way to parse a string that contains an ISO-8601 duration in Objective C. The result …

iphone objective-c datetime iso8601 nstimeinterval
ISO 8601 Duration with milliseconds?

How should a duration of 500 milliseconds be expressed using ISO 8601? To me, the documentation is not 100% clear. Is it just "…

time duration iso8601
DateTimeFormatter.ISO_LOCAL_DATE vs DateTimeFormatter.ofPattern("yyyy-MM-dd") in Java 8+

I have a date I’ve created using ZonedDateTime.now(ZoneOffset.of("+2:00")).minusDays(5). Now I want to format it as …

java date-formatting java-time iso8601 localdate