Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by eterry28

  1. eterry28

    List installed Perlmodules

    Here's a way to do it if a text dump is okay with you. use ExtUtils::Installed; my $instmod = ExtUtils::Installed->new(); foreach my $module ($instmod->modules()) { my $version = $instmod->version($module) || "???"; print "$module -- $version\n"; } exit(0);
  2. eterry28

    HTML::TreeBuilder question

    Hey gang, I have a question about HTML::TreeBuilder. Given the following code: use HTML::TreeBuilder; my $root = HTML::TreeBuilder->new_from_file( "product.html" ); $root->eof(); $root->dump; I get the following dump: ... <tr> @0.1.1.0.1.0.10 <td align="right"> @0.1.1.0.1.0.10.0 <strong>...

Part and Inventory Search

Back
Top