$match="";
for($i=0;$i<=$#wor;$i++)
{
$match=$match.$letter[$wor[$i]];
}
print $match;
open ABC,"<words.txt";
while(<ABC>)
{
if($_ =~ /^$match$/ )
{
print "$_";
print "\n";
}
}
在下面的代码中,我无法匹配文件的行,即 $_ 与变量 $match (其中包含要匹配的实际元字符)?因此没有输出产生需要什么改变?