in reply to Popping Arrays from an Arrays of Arrays
Back to your problem with pop. You are removing an array reference and assigning it to an array - you need to dereference at the same time:my $logtype = $singlefilter[0]->[0]; # or my $Regex_Event = $singlefilter[0][1];
Cheers - L~Rmy @singlefilter = @{ pop @filter }; my $logtype = $singlefilter[0];
|
|---|