I have some Twitter data I got through their GET search. The dates have the following GMT format.
Thu, 19 Jul 2012 01:32:43 +0000
Thu, 19 Jul 2012 01:32:43 +0000
Thu, 19 Jul 2012 01:32:40 +0000
Thu, 19 Jul 2012 01:32:39 +0000
Thu, 19 Jul 2012 01:32:36 +0000
Thu, 19 Jul 2012 01:32:32 +0000
Thu, 19 Jul 2012 01:32:28 +0000
Thu, 19 Jul 2012 01:32:27 +0000
Thu, 19 Jul 2012 01:32:28 +0000
Thu, 19 Jul 2012 01:32:27 +0000
Thu, 19 Jul 2012 01:32:18 +0000
Any idea how could I convert them to UTC format? Unix and/or R solutions would be preferable.
Update: By UTC, I mean UTC timestamp in seconds. For example: 1318394558.
With the
datetool, perhaps something like:Results:
Alternatively, something like:
Gives:
EDIT:
Results:
HTH