Help for this page

Select Code to Download


  1. or download this
    #do a for loop to make it go through the test
    for ($i=0; $i<=#@Comment; $i++) {
    ...
    $Como = $Comment[$i];
              }
    }
    
  2. or download this
    for($i=0; $i <= if ($value==$Comm[$i]) { ....
    
  3. or download this
    my $Como;
    foreach my $i (0..$#Comment)
    ...
    unless (defined $Como) { 
      # do something here if we didn't find anything
    }
    
  4. or download this
    # ...
      $Como = $Comment[$i], last if $Comm[$i] eq $value;