Help for this page

Select Code to Download


  1. or download this
    my $eq_qq = qr/
        \s+
    ...
    if ($line =~ $long_regex) {
        print "$1\n$2\n$3\n$4\n$5\n$6\n$7\n$8\n$9\n$10";
    }
    
  2. or download this
    c:\test>220232
    3
    ...
    1
    F
    
  3. or download this
     
    my @fields = $line =~ $long_regex;
    if (@fields == 10) {
        # process $fields[0] .. $fields[9] here
    }
    
  4. or download this
    my ($id, 
        $status, 
    ...
        # Use $id...
    }
    ...