将指定字符串后面的0字符截去[原创
2006-02-04 13:58:47 来源:WEB开发网核心提示:{--- 过程名: TForm1.RTrimZero 作者: 王洪生(Kevin) 日期: 2004.12.22 参数: const AValue: string 返回值: string 功能: 将指定字符串后面的0字符截去---}function TForm1.RTrimZero(const
{-------------------------------------------------------------------------------
过程名: 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;
过程名: 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;
- ››字符串分割
- ››字符串格式化工具
- ››指定Linux安装软件时所需要安装到的目录
- ››字符串近似匹配算法
- ››字符串分割的两种方法
- ››字符串类数据列类型(参考)
- ››字符串的一些操作
- ››字符串中文的问题
- ››字符串中包含双引号
- ››字符串函数大全
更多精彩
赞助商链接