delphi 去除左边零

function  trimLeftZero(src:string):string;
begin
    while copy(src,1,1)='0' do
     src:=copy(src,2,length(src)-1);
    Result := src;
end;

posted @ 2017-04-18 10:28  夏天的西瓜君  阅读(1185)  评论(0编辑  收藏  举报