Beefy Boxes and Bandwidth Generously Provided by pair Networks
Your skill will accomplish
what the force of many cannot
 
PerlMonks  

Re: Avoid using a module if it's not available

by jacques (Priest)
on Jun 12, 2008 at 22:29 UTC ( [id://691810]=note: print w/replies, xml ) Need Help??


in reply to Avoid using a module if it's not available

use HTML::Perlinfo::Modules; my $m = HTML::Perlinfo::Modules->new(); my $module = $m->print_modules( show_only => qr/FOO::bar/i ); if ($module) { my $foobarzlot=sprintf("%d,",bar(FILE)->zlot); print "FOOBARZLOT=".$foobarzlot."\n"; }
Note that it is very easy to look up multiple modules by simply adding them to the precompiled regular expression. For example:
my $modules = $m->print_modules( show_only => qr/FOO::bar|File::Which| +File::stat/i );

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://691810]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others wandering the Monastery: (4)
As of 2024-03-29 07:08 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found