我正在創建一個接收文件的perl腳本(例如./prog文件) 我需要解析文件並搜索字符串。這是我認爲會起作用的,但似乎並不奏效。該文件是每行一行,包含50行Perl:搜索文件
@array = < >;
print "Enter the word you what to match\n";
chomp($match = <STDIN>);
foreach $line (@array){
if($match eq $line){
print "The word is a match";
exit
}
}
是否有可能字符串跨越兩行呢? – chovy