From: Julian Gall Date: 2006-05-03T04:22:06+09:00 Subject: parsedate doesn't work on Time.now.to_s require 'parsedate' Time.now => Tue May 02 20:17:57 GMT Standard Time 2006 ParseDate.parsedate(Time.now.to_s) => [nil, 5, 2, 20, 17, 57, "GMT", 2] It seems that parsedate is not able to detect the year from the standard string conversion of a date/time. Is there another way to do this? Is it the same in the US as for me here in the UK? It seems rather inconsistent. Julian -- Posted via http://www.ruby-forum.com/.