parse_isotime

parse_isotime(value: string) -> timestamp

Parse an ISO8601 (YYYY-MM-DDTHH:MM:SSZ) formatted string as a timestamp.

If its timezone is not UTC (Z), the offset must be represented as hour and minutes in ±hh:mm format. The colon between hours and minutes is required, if needed, you may do this with replace_regex.

Domain

This is a scalar function (calculates a single output value for a single input row).

Categories

Examples

Make a new time column timestamp from an ISO 8601 format date and time string.

Make a new time column timestamp from a constructed time string.

Make new time columns from ISO 8601 format date and time strings with sub-second precision.