0
基本上我想要統計包含單詞Out的行的數量。perl行計算包含特定文本的文件
my $lc1 = 0;
open my $file, "<", "LNP_Define.cfg" or die($!);
#return [ grep m|Out|, <$file> ]; (I tried something with return to but also failed)
#$lc1++ while <$file>;
#while <$file> {$lc1++ if (the idea of the if statement is to count lines if it contains Out)
close $file;
print $lc1, "\n";
個人而言,我會更舒服括號支撐指標參數,和前面的'0:
然後在命令行中運行'在比較 –
choroba你能解釋一下這個線路到底在做什麼嗎?謝謝。 – dsaliba
@dsaliba:它在每行中搜索'Out'。如果在某處發現它(索引返回該位置,即0或更多),則$ lc1遞增。 – choroba