From: Paul Battley Date: 2006-09-02T01:41:01+09:00 Subject: Re: Convert String to date On 01/09/06, aidy wrote: > p end_day.to_s #putting to string to see format > > I recieve this > => "2006-06-15" > > How then do I format it into a two-digit year European date? end_day.strftime('%d/%m/%y') => "15/06/06" Paul.