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

相关文章:

  • 2021-08-15
  • 2021-12-10
  • 2022-12-23
  • 2022-02-05
  • 2022-12-23
  • 2021-12-10
  • 2021-08-08
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-09-12
  • 2022-02-27
  • 2022-12-23
  • 2022-01-29
相关资源
相似解决方案