Y
yzhshi
Unregistered / Unconfirmed
GUEST, unregistred user!
上来喘口气……
uses
winsock;
procedure TForm1.Button1Click(Sender: TObject);
var
s: String;
begin
s := '213.123.33.123';
if inet_addr(PAnsiChar(s)) <> -1 then
ShowMessage('是IP地址')
else
ShowMessage('不是IP地址');
end;
uses
winsock;
procedure TForm1.Button1Click(Sender: TObject);
var
s: String;
begin
s := '213.123.33.123';
if inet_addr(PAnsiChar(s)) <> -1 then
ShowMessage('是IP地址')
else
ShowMessage('不是IP地址');
end;