Is there any kind of standard for representing date ranges?

ISO 8601 does have a standard for representing date ranges. To represent the start and end date using this format you would write:

2013-01-01/2013-06-31

Note how the forward slash is used as the interval designator to separate the start and end dates.

See this Wikipedia page for more information.

Leave a Comment