Help for this page

Select Code to Download


  1. or download this
    if ($file1[0] eq $dealerno)
    {
    ...
      @file2[$cnts++] = $file1[9];
      @file2[$cnts++] = $file1[10];
    }
    
  2. or download this
    if ($file1[0] eq $dealerno)
    {
      @file2[0..10] = @file1[0..10];
    }
    
  3. or download this
    Scalar value @file2[$cnts++] better written as @file2[$cnts++] at -foo
    +.pl line 327.