Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    #use Data::Dumper; $Data::Dumper::Useqq = 1; $| = 1;
    #print Dumper( \%some_var );
    
  2. or download this
        my @tmp;
        if ($match){
    ...
            print "@tmp\n";
        }
        push @arraynew,[@tmp];
    
  3. or download this
        if ($match){
            my @tmp = @line[@sorted_cols];
            print "@tmp\n";
            push @arraynew, [@tmp];
        }
    
  4. or download this
        if ($match){
            my @tmp = @line[@sorted_cols];
            print "@tmp\n";
            push @arraynew,[@tmp];
        }
    
  5. or download this
        if ($match){
            push @arraynew, $_;
            print "$_\n";
        }
    
  6. or download this
        my @final_result = map { [ (split "\t")[@sorted_cols]  ] }
                           @{ $arrayref };
    
  7. or download this
        my @arraynew;
        foreach my $key_pos ( keys %conwithposition ) {
    
  8. or download this
        foreach my $key_pos ( keys %conwithposition ) {
            my @arraynew;
    
  9. or download this
    $ perl -e 'use Data::Dumper; my $x = "foo"; my $x_ref = \$x; print Dum
    +per ref($x), ref($x_ref);'
    $VAR1 = '';
    $VAR2 = 'SCALAR';
    
  10. or download this
        if (ref $inputval_ref eq 'SCALAR') {
            return 1 if ($valuesrc eq $$inputval_ref);
    
  11. or download this
        if (ref $inputval_ref eq '') {
           return 1 if ($valuesrc eq $inputval_ref);
    
  12. or download this
    my ($op, $arg1, $arg2) = (@{$conwithposition{$key_pos}}[1],@{$conwithp
    +osition{$key_pos}}[2],$line[@{$conwithposition{$key_pos}}[0]]);
    
  13. or download this
    my ( $arg2_pos, $op, $arg1 ) = @{ $conwithposition{$key_pos} };
    my $arg2 = $line[ $arg2_pos ];
    
  14. or download this
    #!/usr/bin/perl
    use strict;
    ...
          }
          return 0;
    }
    
  15. or download this
    #!/usr/bin/perl
    use strict;
    ...
    
        return $op_match;
    }
    
  16. or download this
    print Dumper \@sorted_cols, \%conwithposition, \@array;