Help for this page

Select Code to Download


  1. or download this
    
    if ( $string !~ /search patter here/ ) {
        print ( "didnt find match" );
    };
    
  2. or download this
    if ( $string =~ /search pattern here/ ) {
        print ( "found string" );
        } else {
        print ( "didnt find string" );
    };