{-------------------------------------------------------------------------------
过程名: 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 Resul...[ 查看全文 ]