Appearance
regex for ISO dates
^(\d{4}-\d{2}-\d{2})(T\d{2}:\d{2}:\d{2}(\.\d{3})?(Z|[+-]\d{2}:\d{2})?)?$
matches parts of the iso date into groups, so that you can for example sort by iso dates
Appearance
^(\d{4}-\d{2}-\d{2})(T\d{2}:\d{2}:\d{2}(\.\d{3})?(Z|[+-]\d{2}:\d{2})?)?$
matches parts of the iso date into groups, so that you can for example sort by iso dates