从文件中提取字符串 2015/12/14 38287 清华大佬耗费三个月吐血整理的几百G的资源,免费分享!....>>> my %hash; while(<>) { chomp(); if( /("(.+?)")/ ) { $hash{$1} = ""; } } foreach (sort(keys %hash)) { print ; print "\n"; }