-1
open(LOGFILE,"<sim_success.log") or die("could not open file");
while (<LOGFILE>){
$line = $_;
chomp($line);
my @design = grep (/Design:/, $line);
push (@final, @design);
}
print $final[0];
close LOGFILE;
設計:d:\測試\例子\ Example1_wrk ....如何從perl中的字符串捕獲具有特定模式的子字符串/單詞?
如何保存 「Example_wrk」 在Perl中的變種?
如果我們打印$決賽[1]>唯一的變化是它變得... Example2_wrk,需要保存在VAR – Harsh
所以,你必須保存所有線路匹配「設計:」在陣列中的'@ final'。這是一個變量。任務完成?這個問題似乎並不能捕捉到你實際想要做的事情。 – bytepusher
所以你想要走出這條路線? – simbabque