Help for this page

Select Code to Download


  1. or download this
    /^Sen = (\S+).*/;
    $sen = $1;
    ...
    $acc = $1;
    /^Cor = (\S+).*/;
    $cor = $1
    
  2. or download this
    $sen = $1 if /^Sen = (\S+).*/;
    $acc = $1 if /^Acc = (\S+).*/;
    $cor = $1 if /^Cor = (\S+).*/;
    
    push @array, $sen, $acc, $cor;