La función strptime() en R Language se usa para analizar la representación dada de fecha y hora con la plantilla dada.
Sintaxis: strptime(x, format, tz = “”)
Parámetros:
x: representación dada de fecha y hora
y: plantilla dada en la que se realiza el análisis
tz: una string de caracteres que especifica la zona horaria que se utilizará para la conversión
Ejemplo 1:
Python3
# R program to illustrate # strptime function # Specifying a time x <- "13:15:17" # Calling strptime() function # over specified time and template y <- strptime(x, "% H:% M:% S") # Getting the current date and # given time into specified template y
Producción:
[1] "2020-06-17 13:15:17 UTC"
Ejemplo 2:
Python3
# R program to illustrate # strptime function # Specifying a date and time x <- "10-02-2020 05:05:06 AM" # Calling strptime() function # over specified date and time, template # and time zone y <- strptime(x, "% d-% m-% Y % I:% M:% S", "GMT") # Getting parsed date and time y
Producción:
[1] "2020-02-10 05:05:06 GMT"
Publicación traducida automáticamente
Artículo escrito por Kanchan_Ray y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA