返回列表 发帖

[问题求助] Perl语言怎样获取本机IP地址?

就像用批处理命令ipconfig得到的这种:
192.168.0.10

现学现卖
  1. my @string = `ipconfig`;
  2. for ($index =0; $index < 45; $index++) {
  3.         @IPAddress=split(/: /, $string[$index+3]) if ($string[$index] =~ /宽带连接:/);
  4. }
  5. print "$IPAddress[1]\n";
复制代码

TOP

回复 2# lxzzr


我需要处理很多个国家语言的情况,怎么办?

TOP

使用Socket或者NetBios,不知道Perl有没有对应模块

TOP

返回列表