Help for this page

Select Code to Download


  1. or download this
        [
            [ "LOGENTRY 1", $1, $2, $3, $4..],
            [ "LOGENTRY 2", $1, $2, $3, $4..],
            ...
        ]
    
  2. or download this
    while (/$regex/g) {
        push @buffer, [
    ...
        ];
        $last = $-[0];
    }
    
  3. or download this
    while (@x = /($regex)/g) {
        push @buffer, [ @x ];
    }