Cast date with time

types.castDatetime(format = "%Y-%m-%dT%H:%M:%SZ", value)

Arguments

format

available options are "default", "any", and "<pattern>" where

default

An ISO8601 format string e.g. YYYY-MM-DDThh:mm:ssZ in UTC time

any

As for types.castDate

<pattern>

As for types.castDate

value

datetime to cast

See also

Examples

types.castDatetime(format = "default", value = "2014-01-01T06:00:00Z")
#> [1] "2014-01-01 06:00:00 UTC"
types.castDatetime(format = "%d/%m/%y %H:%M", value = "21/11/06 16:30")
#> [1] "2006-11-21 16:30:00 UTC"