Help for this page

Select Code to Download


  1. or download this
            if( $title =~ /$searchString/ )  { $uiFound = 1 }
            last if ( $uiFound >= 1 );
    
  2. or download this
    sub ConfirmUI {
        my $searchString = shift;
    ...
        }    
        return( $uiFound );
    }
    
  3. or download this
    sub ConfirmUI {
        my $searchString = shift;    
    ...
        }    
        return 0;
    }