• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    perl实现的两个文件对比并对数据进行筛选的脚本代码
    复制代码 代码如下:

    #!/usr/bin/perl
    my %scyjm; 
    open (CONTACT,"f:\\perl\\f.txt")||die("can not open the file!");  
    while (CONTACT>) 

      next if /^#/;#if($_=~/^#/的简写 
      chomp; 
      my @information =split;# my @information=split/\s+/,$_;的简写 
      next if(($information[1]=~/\./) ($information[2]=~/\./)); 
      $scyjm{$information[13]}->{$information[0]}=$information[3]; 

    close CONTACT; 
    open (SC,"f:\\perl\\a.csv")||die("can not open the file!"); 
    while(SC>) 

       chomp; 
       my @sc=split; 
       if ( $scyjm{$sc[1]}{$sc[2]}) 
       { 
          print "$sc[0] $sc[1] $sc[2] $sc[3] $sc[4] $sc[6] $yjm[6]\n"; 
       } 
    }
    上一篇:perl写的一个随机编故事的程序(rand随机函数)
    下一篇:perl qw以空格为分隔符问题的解决方法
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    perl实现的两个文件对比并对数据进行筛选的脚本代码 perl,实现,的,两个,文件,