iso8601ComponentsWithTimeZone(includingFractionalSeconds:dateSeparator:dateTimeSeparator:timeSeparator:timeZoneSeparator:)
Creates a regex component to match an ISO 8601 date and time string, including time zone, and capture the string as a DateComponents using the time zone as specified in the string.
Declaration
static func iso8601ComponentsWithTimeZone(includingFractionalSeconds: Bool = false, dateSeparator: Date.ISO8601FormatStyle.DateSeparator = .dash, dateTimeSeparator: Date.ISO8601FormatStyle.DateTimeSeparator = .standard, timeSeparator: Date.ISO8601FormatStyle.TimeSeparator = .colon, timeZoneSeparator: Date.ISO8601FormatStyle.TimeZoneSeparator = .omitted) -> SelfParameters
- includingFractionalSeconds:
Specifies if the string contains fractional seconds.
- dateSeparator:
The separator between date components.
- dateTimeSeparator:
The separator between date and time parts.
- timeSeparator:
The separator between time components.
- timeZoneSeparator:
The separator between time parts in the time zone.
Return Value
A RegexComponent to match an ISO 8601 string, including time zone.