Help for this page

Select Code to Download


  1. or download this
    while(my ($key2,$value2)=each(%hash2)){
    if($key1 eq $key2){
    
  2. or download this
    if(exists $hash2{$key1}){
    
  3. or download this
    open(FH,"file1.txt")or die "can not open file";
    open(FH1,"file1.txt")or die "can not open file";
    
  4. or download this
    #push(@allhits,$key1);
    
  5. or download this
    foreach(@allhits){
    
  6. or download this
    push(@file1,$list1[1]."#".$list1[2],$list1[4]);
    
  7. or download this
    push(@file1,$list1[1]."#".$list1[2],[$list1[4],$list1[0]]);
    and in 
    ...
    print "$_";.
    use
    print "@{$_}"; # to what you got to write.
    
  8. or download this
        while(my $str=<FH1>){