Search Results

0
votes

How do I find which file Perl loaded when I use a module?

Module::Mapper provides a way to walk the @INC tree to find modules: perl -MMod …
1
vote

What does the Perl substitution operator act on?

If in Q2 you mean to take a sub-string from $a, you might find this idiom useful: ($b) = $a =~ /(substring-to-match)/; $b =~ s/regex-on-susbtring/result-string/; A …
12
votes

Should I use PHP or Perl for massaging my data and storing/retrieving it with MySQL?

Perl's DBI module is very powerful and makes it easy to avoid SQL injection attacks through the use of bound parameters. …
6
votes

How can I reformat messages in an mbox file with bash or Perl?

Mail::Box::Mbox will let you easily parse the file into separate messages. Mark Overmeer's …
4
votes

How do I skip to a specific input line in Perl?

<> is only magic in a while(<>) construct. Otherwise it does not assign to $_, so the /include/ regular expression has nothing to ma …