I'm using Delphi BDS2006 how can I format the date (01/10/2011) to look something like
1st Oct 2011
I tried using the
ShowMessage(FormatDateTime('ddd mmm yyyy', now));
the message I get is Sat Oct 2011
ddd gives me Satand not 1st
Similar way I want to add st,nd,rd,th to the Dates
Is there a built in procedure or funtion to do this or i have to manually check for the date and assign the suffix to it
I'm currently using this
case dayof(now)mod 10 of
1 : days:=inttostr(dayof(dob))+'st';
2 : days:=inttostr(dayof(dob))+'nd';
3 : days:=inttostr(dayof(dob))+'rd';
else days:=inttostr(dayof(dob))+'th';
end;
dayStr := inttostr(dayof(dob)), and then usedayStrrepeatedly inside the case, instead of repeatinginttostr(dayof(dob)). It doesnt improve performance since only one of those cases actually gets executed, but it's worth doing, because the DRY principle (Don't repeat yourself) leads to more readable maintainable code with fewer CopyPasta bugs. – Warren P Oct 14 '11 at 13:40