| |
| Converting strings to dates |
 |
I want to convert strings to dates, but StrToDate doesn't do
what I want. I want to convert "December 6, 969" to a
TDateTime. What should I do?
StrToDate only converts numbers, so if you have month names in
your string, you'll have to use VarToDateTime instead. Here are
some examples: var
D , D2, D3 : TDateTime;
begin
D := VarToDateTime('December 6, 969');
D2 := VarToDateTime('6-Apr- 998');
D3 := VarToDateTime(' 998-Apr-6');
ShowMessage(DateToStr(D )+' '+DateToStr(D2)+' '+
DateToStr(D3));
end;
7/ 6/98 4:3 :28 PM
|
|
| Hits/month |
2,500,000+ |
Downloads (Since May 2000) |
7,393,709 |
| Total Files |
6,023 |
| Forum msgs |
7,670 |
| Articles/FAQs |
70+/900+ |
Top Selling Software at Amazon
|