Help for this page

Select Code to Download


  1. or download this
    for my $line (@lines){
      if( $Session->{'usrSystem'} )=~/$line/g;
        $Response->Write("Found a match! Hooray");
    }
    
  2. or download this
    foreach my $line (@lines) {
        if ( $Session->{'usrSystem'} =~ /$line/g ) {
           $Response->Write("Found a match! Hooray");
        }
    }