1234567891011121314151617181920 |
- Program Example20;
- { This program demonstrates the StrToDateTime function }
- Uses sysutils;
- Procedure TestStr (S : String);
- begin
- Writeln (S,' : ',DateTimeToStr(StrToDateTime(S)));
- end;
- Begin
-
- Writeln ('ShortDateFormat ',ShortDateFormat);
- TestStr(DateTimeToStr(Now));
- TestStr('05-05-1999 15:50');
- TestStr('5-5 13:30');
- TestStr('5 1:30PM');
- End.
|