function FilterNumber(sNum:string):string;
var
i : integer;
begin
Result := '';
if Length(sNum) > 0 then
begin
for i := 1 to Length(sNum) do begin
case sNum[i] of
'0'..'9','.','-' : Result := Result + sNum[i];
end;
end;
end;
if Result = '' then Result := '0';
end;
전 이렇게 함수를 만들어 쓰고 있어요
괜히 다른 컴포넌트 가져놓으면 다른 컴에서 환경잡기 힘드니까
현재것에서 만들어 쓰는거죠
var
i : integer;
begin
Result := '';
if Length(sNum) > 0 then
begin
for i := 1 to Length(sNum) do begin
case sNum[i] of
'0'..'9','.','-' : Result := Result + sNum[i];
end;
end;
end;
if Result = '' then Result := '0';
end;
전 이렇게 함수를 만들어 쓰고 있어요
괜히 다른 컴포넌트 가져놓으면 다른 컴에서 환경잡기 힘드니까
현재것에서 만들어 쓰는거죠