http://www.perlmonks.org?node_id=54409


in reply to (Ovid) Re: Which modules are most often mentioned on PerlMonks???
in thread Which modules are most often mentioned on PerlMonks???

I trimmed it down cuz if I had the modules that were just mentioned once in there it was too long to fit in a MySQL text field.

I basically just searched through the database dump for things that matched  /((\w+::)+\w+)/ or /(\w+\.pm)/i to find the matches.

vroom | Tim Vroom | vroom@cs.hope.edu

  • Comment on Re: (Ovid) Re: Which modules are most often mentioned on PerlMonks???
  • Download Code

Replies are listed 'Best First'.
Re: Re: (Ovid) Re: Which modules are most often mentioned on PerlMonks???
by Lexicon (Chaplain) on Jan 26, 2001 at 05:57 UTC
    Interestingly, the most popular modules/pragmas are all missed!

    use DBI;
    use warnings;
    use strict;

    Or what about a mention such as "use CGI;" which also would not be counted. Is the intention to exclude all mentions in code? Or would it be practical to add a new RegEx like:

    /^use \w+;/

    -Lexicon