文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>perl 两个文件字符串比较

perl 两个文件字符串比较

时间:2010-12-30  来源:singlefold

#!/usr/bin/perl
#use strict;
open(FILE1,"C:/Perl/BX/BX-Users.txt");
open(FILE2,"C:/Perl/BX/BX-Book-Ratings.txt");
open(result1,">C:/perl/BX/BX-Users_result.txt");
my $i=0;
my $j=0;
while((my $bxUser=<FILE1>)&&($i<10))
{
        my $userId=substr($bxUser,0,index($bxUser,","));
        while(my $rankUser=<FILE2>)
        {
                my $userIdCmp=substr($rankUser,0,index($rankUser,","));
                if(($userId==$userIdCmp)&&($j==0))
                {
                        syswrite(result1,"$bxUser");
                        $j++;
                }

        }
        $j=0;
        $i++;
        
}
close(FILE1);
close(FILE2);
close(result1);

相关阅读 更多 +
排行榜 更多 +
百炼英雄抽卡技巧指南

百炼英雄抽卡技巧指南

休闲益智 下载
英雄没有闪滚雷旋风技能如何搭配

英雄没有闪滚雷旋风技能如何搭配

休闲益智 下载
英雄没有闪雷旋风BD构筑推荐

英雄没有闪雷旋风BD构筑推荐

休闲益智 下载