Help for this page

Select Code to Download


  1. or download this
    $logtype=@singlefilter[0];
    
  2. or download this
    $logtype=$singlefilter[0];
    
  3. or download this
    $logtype = ${$singlefilter}[0];
    # is the same as
    $logtype = $singlefilter[0]->[0];
    # is the same as
    $logtype=$singlefilter[0][0];
    
  4. or download this
    ($logtype, $Regex_Event, $Friendly_Output) = @{$singlefilter[0]}[0,1,2
    +];
    
  5. or download this
    perldoc perldata
    perldoc perlreftut
    perldoc perllol
    perldoc perlref