如何将Tue Jan 31 17:38:10 +0000 2017格式转换为R中的日期格式?

时间:2017-02-28 16:38:49

标签: r datetime-format

我尝试了(^|\\s[a-z]+\\s+),但它无效。

ISOdatetime()

例如:error: argument "min" is missing, with no default

1 个答案:

答案 0 :(得分:1)

我们可以使用strptime

format(strptime(str1, format = "%a %b %d %H:%M:%OS%z %Y"), "%d/%m/%Y")
#[1] "31/01/2017"