On 01/09/06, aidy <aidy.rutter / gmail.com> 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.