H
hisman
Unregistered / Unconfirmed
GUEST, unregistred user!
写了一个函数作用是这样的
传入'19960612',返回'1996年06月12日'
function Txxcx_form.zhrq(str: string): string;
var
tempyear,tempmonth,tempday:string;
begin
str:=trim(str);
tempyear:=copy(str,1,4);
tempmonth:=copy(str,5,6);
tempday:=copy(str,7,8);
result:=tempyear+'年'+tempmonth+'月'+tempday+'日';
end;
最后返回的是回'1996年0612月12日'
真是出鬼了,难道这个函数有问题吗????
传入'19960612',返回'1996年06月12日'
function Txxcx_form.zhrq(str: string): string;
var
tempyear,tempmonth,tempday:string;
begin
str:=trim(str);
tempyear:=copy(str,1,4);
tempmonth:=copy(str,5,6);
tempday:=copy(str,7,8);
result:=tempyear+'年'+tempmonth+'月'+tempday+'日';
end;
最后返回的是回'1996年0612月12日'
真是出鬼了,难道这个函数有问题吗????