首页 > 学院 > 开发设计 > 正文

将指定字符串后面的'0'字符截去[原创

2019-11-18 18:06:16
字体:
来源:转载
供稿:网友
{-------------------------------------------------------------------------------
  过程名:    TForm1.RTrimZero
  作者:      王洪生(Kevin)
  日期:      2004.12.22
  参数:      const AValue: string
  返回值:    string
  功能:      将指定字符串后面的0字符截去
-------------------------------------------------------------------------------}
function TForm1.RTrimZero(const AValue: string): string;
var
  nLen : Integer;
  i    : Integer;
  strTemp: string;
begin
  if (AValue = '') then Result := '';
  nLen := Length(AValue);
  strTemp := AValue;
  for i:= nLen downto 1 do
  begin
    if (AValue[i] = '0') then
      strTemp[i] := ' '
    else
      Break;
  end;
  Result := strTemp;
end;


上一篇:CRC算法的实现

下一篇:200开发技术年度综述之Windows开发

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表
学习交流
热门图片

新闻热点

疑难解答

图片精选

网友关注