procedure TForm1.Button1Click(Sender: TObject);
var s, y, m, d: string;
t: Integer;
begin
// 笨方法 (可以省了看Help的时间)
s := '12/31/2002';
t := pos('/', s);
m := copy(s, 1, t-1);
s := copy(s, t+1, length(s)); // '31/2002'
t := pos('/', s);
d := copy(s, 1, t-1);
s := copy(s, t+1, Length(s)); // '2002'
y := s;
Button1.Caption := y + m + d;
// 通用转换方法(另一种需要)
caption := FormatDateTime('YYYYMMDD',now());
end;
以上代码经测试通过, 现供大家参考!!!