noExtractorPatternsMatched

scrapeableFile.noExtractorPatternsMatched()
Description
Will return true if no extractor patterns associated with the scrapeable file found a match. This can be a useful error-handling mechanism.
Example
// If no patterns matched, outputs a message indicating such
// to the session log.
if( scrapeableFile.noExtractorPatternsMatched() )
{
 session.log( "Warning! No extractor patterns matched." );
}