User - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T01:42:11Zhttp://stackoverflow.com/feeds/user/10415http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1798861/how-do-i-insert-values-from-a-hash-into-a-database-using-perls-dbi-module/1799980#17999801Answer by runrig for How do I insert values from a hash into a database using Perl's DBI module?runrig2009-11-25T21:12:26Z2009-11-25T21:12:26Z<p>There's <a href="http://search.cpan.org/dist/DBI/DBI.pm#prepare%5Fcached" rel="nofollow">an example</a> in <a href="http://search.cpan.org/dist/DBI/DBI.pm" rel="nofollow">the docs</a></p>
http://stackoverflow.com/questions/1727623/sqlplus-inside-perl-script/1732591#17325910Answer by runrig for SQL*Plus inside Perl scriptrunrig2009-11-13T23:43:03Z2009-11-19T22:34:51Z<p>Any question of this type should be prefaced with "I can't use DBI because..." Because you really want to use DBI if at all possible. You might have good reason(s) not to use it, but maybe, we can tell you why your reasons aren't very good and what to do about it. That being said, here's one way to do what you asked, using fork and filehandles, and getting output one line at a time (warning: if you print too much to a process like this, it may block due to buffer issues):</p>
<pre><code>use strict;
use warnings;
pipe(my($p_rdr, $c_wtr)) or die "Err: $!";
pipe(my($c_rdr, $p_wtr)) or die "Err: $!";
my $pid = fork;
die "Could not fork: $!" unless defined $pid;
unless ($pid) {
close $p_rdr;
close $p_wtr;
open(STDOUT, ">&=", $c_wtr) or die "dup: $!";
open(STDIN, "<&=", $c_rdr) or die "dup: $!";
print "Exec sqlplus\n";
exec qw(sqlplus user/passwd@dbname);
die "Could not exec: $!";
}
close $c_wtr;
close $c_rdr;
print "Print sql\n";
print $p_wtr "select * from table_name where col1 = 'something';\n";
print "Close fh\n";
close $p_wtr;
print "Read results\n";
while (<$p_rdr>) {
print "O: $_";
}
close $p_rdr;
</code></pre>
http://stackoverflow.com/questions/1707693/how-can-i-list-files-under-a-directory-with-a-specific-name-pattern-using-perl/1709008#17090080Answer by runrig for How can I list files under a directory with a specific name pattern using Perl?runrig2009-11-10T15:56:41Z2009-11-18T16:41:47Z<p>For a fixed level of directories, sometimes it's easier to use <a href="http://perldoc.perl.org/functions/glob.html" rel="nofollow">glob</a> than File::Find:</p>
<pre><code>while (my $file = </var/spool/[a-z]/user/*/*>) {
print "Processing $file\n";
}
</code></pre>
http://stackoverflow.com/questions/1202869/informatica-powercenter-vs-custom-perl-etl-job/1203199#12031991Answer by runrig for informatica powercenter vs custom perl ETL job?runrig2009-07-29T21:34:01Z2009-10-30T23:09:44Z<p>ETL tools like Informatica buy you productivity (and pretty pictures) if you have people that can't code. It makes sense if there's nobody that can maintain the code. For someone that can code, it's like hiring a 500-pound gorilla to move a molehill.</p>
<p>See also: <a href="http://www.dbasupport.com/forums/showpost.php?p=155078&postcount=11" rel="nofollow">This post</a> and <a href="http://www.dbasupport.com/forums/showpost.php?p=155170&postcount=14" rel="nofollow">this post</a> in <a href="http://www.dbasupport.com/forums/showthread.php?p=155170#post155170" rel="nofollow">this thread</a></p>
<p>It is sort of nice for the automatic job logging (you don't have to think about what you want to log...it's all pretty much done for you) and the runtime monitoring tools (how far along is my workflow, and where did it fail?).</p>
http://stackoverflow.com/questions/132734/presentations-on-switching-from-perl-to-python/134006#1340069Answer by runrig for Presentations on switching from Perl to Pythonrunrig2008-09-25T15:30:03Z2009-10-29T22:21:22Z<p>There's no benefits to rewriting a ton of code from one similar language to another when both languages have similar capabilities. Perhaps you should focus on writing better perl code. Maybe learn to use perltidy, or buy a copies of Perl Best Practices and Perl Medic, and hand them out to your co-workers. And if you're worried about Perl being not-quite-as-purely OO as Python, use <a href="http://search.cpan.org/dist/Moose/" rel="nofollow">Moose</a> (and I'd counter that Python is lacking in the functional programming department compared to Perl anyway).</p>
<p>In response to the comments below, I'll also say that there's no point to forcing your coworkers to learn and get up to speed on a language with similar capabilities to the one you're already using.</p>
<p>Now, if there's some library or such that your company needs that is available (or far superior) in Python that is not available (or of far lesser quality) in Perl, then go ahead and switch or add another language to the mix.</p>
http://stackoverflow.com/questions/1590504/what-would-be-your-choice-of-perl-xml-parsers-for-files-greater-than-15-gb/1591302#15913025Answer by runrig for What would be your choice of Perl XML Parsers for files greater than 15 GB?runrig2009-10-19T21:36:52Z2009-10-19T21:36:52Z<p>A SAX parser is one option. Other options that don't involve loading the entire doc into memory are <a href="http://search.cpan.org/dist/XML-Twig/" rel="nofollow">XML::Twig</a> and <a href="http://search.cpan.org/dist/XML-Rules/" rel="nofollow">XML::Rules</a>.</p>
http://stackoverflow.com/questions/51198/what-etl-tool-do-you-use/67784#6778410Answer by runrig for What ETL tool do you use?runrig2008-09-15T22:59:41Z2009-10-12T15:25:20Z<p>We use Informatica. But you didn't ask our opinion of what we use :-)</p>
<p>My own opinion is that some well written perl (or whatever your favorite so-called "scripting" language is) can beat a shiny GUI anyday.</p>
<p>And I'm <a href="http://www.perlmonks.org/?node%5Fid=134790" rel="nofollow">not alone in my opinion</a> (from <a href="http://www.perlmonks.org/?node%5Fid=134690" rel="nofollow">this thread</a>).</p>
<p>And my favorite definition of ETL:</p>
<blockquote>
<p>ETL is that which you develop custom systems by hand to..</p>
<ul>
<li>backup the truck and copy legacy systems data ( 20 different systems )</li>
<li>marry the data together from different legacy systems ( compute farm )</li>
<li>Compress the data by summarizing</li>
<li>Do some transformations</li>
<li>Load into Oracle using sql*loader Direct path you may get 1/4 billion rows loaded per hour</li>
<li>transform the data some more using pl/sql and perl or java</li>
<li>compress the data again</li>
<li>roll fact tables up by dropping columns</li>
<li>complete star schema</li>
<li>optimize your partitioned world and make fast</li>
</ul>
<p>Be told by snobby and stupid large companies you cannot work in their ETL department because you lack direct experience with...</p>
<p>Ab Initio
Informatica
etc.</p>
<p>GUIs that attempt to automate what you can do manually and probably do better.</p>
</blockquote>
<p>from <a href="http://www.dbasupport.com/forums/showpost.php?p=155078&postcount=11" rel="nofollow">BJE_DBA</a></p>
<p>Update: and I (++) Allan elsewhere in this thread.</p>
http://stackoverflow.com/questions/1533067/what-is-the-best-way-to-gunzip-files-with-perl/1533337#15333371Answer by runrig for What is the best way to gunzip files with Perl?runrig2009-10-07T18:24:30Z2009-10-07T18:31:18Z<blockquote>
<p>And I also don't understand why "while (<code><$z></code>)" is slower than "while (my $line = $z->getline())"...</p>
</blockquote>
<p>Because $z is a self tied object, tied objects are notoriously slow, and <code><$z></code> uses the tied object interface to call getline() rather than directly calling the method.</p>
<p>Also you can try <a href="http://search.cpan.org/dist/PerlIO-gzip/" rel="nofollow">PerlIO-gzip</a> but I suspect it won't be any/much faster than the other module.</p>
http://stackoverflow.com/questions/1478083/how-can-i-efficiently-match-many-different-regex-patterns-in-perl/1478276#14782761Answer by runrig for How can I efficiently match many different regex patterns in Perl?runrig2009-09-25T16:25:48Z2009-09-25T16:25:48Z<p>Maybe something like:</p>
<pre><code>my @interesting = (
qr/Failed in routing out/,
qr/Agent .+ failed/,
qr/Record Not Exist in DB/,
);
...
for my $re (@interesting) {
if ($line =~ /$re/) {
print $line;
last;
}
}
</code></pre>
<p>You can try joining all your patterns with "|" to make one regex. That may or may not be faster.</p>
http://stackoverflow.com/questions/1458454/why-is-the-list-my-perl-map-returns-just-1s/1466672#14666721Answer by runrig for Why is the list my Perl map returns just 1's?runrig2009-09-23T15:18:04Z2009-09-23T15:18:04Z<p>As mentioned, s/// returns the number of substitutions performed, and map returns the last expression evaluated from each iteration, so your map returns all 1's. One way to accomplish what you want is:</p>
<pre><code>s/\..*$// for my @output = @input;
</code></pre>
<p>Another way is to use Filter from <a href="http://search.cpan.org/dist/Algorithm-Loops/" rel="nofollow">Algorithm::Loops</a></p>
http://stackoverflow.com/questions/462219/xkcd-random-number/620904#6209042Answer by runrig for XKCD - Random Numberrunrig2009-03-06T23:46:49Z2009-09-10T16:39:01Z<p>It works perfectly. With the caveat that every time the function is called, the programmer needs to roll the dice again, rewrite the function, and recompile the program. I assume that the number of dice and/or the probability distribution of the function are documented somewhere. Or not.</p>
http://stackoverflow.com/questions/1406291/how-can-i-use-an-array-as-a-hash-value-in-perl/1406315#14063152Answer by runrig for How can I use an array as a hash value in Perl?runrig2009-09-10T16:27:13Z2009-09-10T16:27:13Z<p>[] makes a reference to an empty array. You are creating an array with one element. Just say:<code>my @elements;</code> to make an empty array.</p>
http://stackoverflow.com/questions/407407/how-do-i-read-fixed-length-records-in-perl/407992#4079927Answer by runrig for How do I read fixed-length records in Perl?runrig2009-01-02T20:53:44Z2009-08-04T23:14:29Z<p>Update: For the definitive answer, see Jonathan Leffler's answer below.</p>
<p>I wouldn't use this for just two fields (I'd use <a href="http://perldoc.perl.org/functions/pack.html" rel="nofollow">pack</a>/<a href="http://perldoc.perl.org/functions/unpack.html" rel="nofollow">unpack</a> directly), but for 20 or 50 or so fields I like to use <a href="http://search.cpan.org/dist/Parse-FixedLength/FixedLength.pm" rel="nofollow">Parse::FixedLength</a> (but I'm biased). E.g. (for your example) (Update: also, you can use $/ and <> as an alternative to read($fh, $buf, $buf_length)...see below):</p>
<pre><code>use Parse::FixedLength;
my $pfl = Parse::FixedLength->new([qw(
key:5
blank:1
value:3
)]);
# Assuming trailing newline
# (or add newline to format above and remove "+ 1" below)
my $data_length = $pfl->length() + 1;
{
local $/ = \$data_length;
while(<FILE>) {
my $data = $pfl->parse($_);
print "$data->{key}:$data->{value}\n";
# or
print $data->key(), ":", $data->value(), "\n";
}
}
</code></pre>
<p>There are some similar modules that make pack/unpack more "friendly" (See the "See Also" section of Parse::FixedLength).</p>
<p>Update: Wow, this was meant to be an alternative answer, not the official answer...well, since it is what it is, I should include some of Jonathan Leffler's more straight forward code, which is likely how you should usually do it (see <a href="http://perldoc.perl.org/functions/pack.html" rel="nofollow">pack</a>/<a href="http://perldoc.perl.org/functions/unpack.html" rel="nofollow">unpack</a> docs and Jonathan Leffler's node below):</p>
<pre><code>$_ = "ABCDE 302";
my($key, $blank, $value) = unpack "A5A1A3";
</code></pre>
http://stackoverflow.com/questions/1192707/why-am-i-not-able-to-query-a-database-from-a-forked-child-in-perl/1195250#11952500Answer by runrig for Why am I not able to query a database from a forked child in Perl?runrig2009-07-28T16:31:08Z2009-07-28T16:31:08Z<p>You are asking for trouble by using the same db handle simultaneously in all of the child processes. You should be creating a new connection in each child.</p>
<p>Never mind...I read the rest of the code.</p>
http://stackoverflow.com/questions/814475/which-repository-contains-lwpparalleluseragent/815091#8150911Answer by runrig for Which repository contains LWP::Parallel::UserAgent?runrig2009-05-02T16:05:38Z2009-05-02T16:05:38Z<p>If you want to see what ppm packages are available, go to <a href="http://cpan.uwinnipeg.ca/htdocs/faqs/cpan-search.html" rel="nofollow">Kobes Search</a>. There you'll see that <a href="http://cpan.uwinnipeg.ca/search?query=paralleluseragent&mode=dist" rel="nofollow">ParallelUserAgent</a> is currently only available for perl 5.8 in the repositories known to Kobes. I see a lot of <a href="http://matrix.cpantesters.org/?dist=ParallelUserAgent%2B2.57" rel="nofollow">test failures on Windows</a> so I kind of doubt that it'll work there anyway, but it's a pure perl module, so all you really have to do is copy the files from the <a href="http://search.cpan.org/dist/ParallelUserAgent/" rel="nofollow">CPAN distribution</a> to see for yourself whether it works or not.</p>
http://stackoverflow.com/questions/773340/can-you-provide-an-example-of-parsing-html-with-your-favorite-parser/773571#7735713Answer by runrig for Can you provide an example of parsing HTML with your favorite parser?runrig2009-04-21T16:51:23Z2009-04-21T17:03:47Z<p>Language: Perl<br/>
Library: <a href="http://search.cpan.org/dist/HTML-Parser/Parser.pm" rel="nofollow">HTML::Parser</a><br/>
Purpose: <a href="http://stackoverflow.com/questions/667130/how-can-i-remove-unused-nested-html-span-tags-with-a-perl-regex/667425#667425">How can I remove unused, nested HTML span tags with a Perl regex?</a></p>
http://stackoverflow.com/questions/738840/how-can-i-write-perl-that-doesnt-look-like-c/744470#7444700Answer by runrig for How can I write Perl that doesn't look like C?runrig2009-04-13T16:31:46Z2009-04-15T04:08:45Z<p>This is probably more like C, but is also more simple:</p>
<pre><code>use Socket qw(inet_aton inet_ntoa);
my $ip = ("192.156.255.255");
my $ip_1 = inet_ntoa(pack("N", unpack("N", inet_aton($ip))+1));
print "$ip $ip_1\n";
</code></pre>
<p>Update: I posted this before reading all of the code in the question. The code here just does the incrementing of the ip address.</p>
http://stackoverflow.com/questions/512613/how-can-i-set-the-windows-path-variable-from-perl/512682#5126828Answer by runrig for How can I set the Windows PATH variable from Perl?runrig2009-02-04T18:36:03Z2009-03-26T16:43:09Z<p>If you need to change environment variables globally and permanently, as if you set it in the control panel, then you have to <a href="http://www.perlmonks.org/?node%5Fid=471822" rel="nofollow">muck with the registry</a> (update: and now there are modules to do this, <a href="http://search.cpan.org/dist/Win32-Env/" rel="nofollow">Win32::Env</a> and <a href="http://search.cpan.org/dist/Win32-Env-Path/" rel="nofollow">Win32::Env::Path</a>). Note that changing variables in the registry and "broadcasting" the change will not change the environment variables in some current processes, notably perl.exe and cmd.exe.</p>
<p>If you just want to change the current process (and subsequently spawned child processes), then the global %ENV hash variable is what you want (e.g. $ENV{PATH}). See <a href="http://perldoc.perl.org/perlvar.html" rel="nofollow">perldoc perlvar</a>.</p>
http://stackoverflow.com/questions/656981/what-software-for-your-own-personal-use-did-you-write/668297#6682973Answer by runrig for What software for your own personal use did you write?runrig2009-03-20T22:58:39Z2009-03-20T22:58:39Z<p>I wrote an app that finds my wife a temp job (so important in today's economy). It logs into a website, keeps refreshing the list of available jobs, and if there is anything in the list, it selects a gig based on certain criteria.</p>
<p>And I may not be the direct user, but I do directly benefit :-)</p>
http://stackoverflow.com/questions/667130/how-can-i-remove-unused-nested-html-span-tags-with-a-perl-regex/667425#6674258Answer by runrig for How can I remove unused, nested HTML span tags with a Perl regex?runrig2009-03-20T18:41:38Z2009-03-20T22:43:42Z<p>Try <a href="http://search.cpan.org/perldoc?HTML::Parser" rel="nofollow">HTML::Parser</a>:</p>
<pre><code>#!/usr/bin/perl
use strict;
use warnings;
use HTML::Parser;
my @print_span;
my $p = HTML::Parser->new(
start_h => [ sub {
my ($text, $name, $attr) = @_;
if ( $name eq 'span' ) {
my $print_tag = %$attr;
push @print_span, $print_tag;
return if !$print_tag;
}
print $text;
}, 'text,tagname,attr'],
end_h => [ sub {
my ($text, $name) = @_;
if ( $name eq 'span' ) {
return if !pop @print_span;
}
print $text;
}, 'text,tagname'],
default_h => [ sub { print shift }, 'text'],
);
$p->parse_file(\*DATA) or die "Err: $!";
$p->eof;
__END__
<html>
<head>
<title>This is a title</title>
</head>
<body>
<h1>This is a header</h1>
a <span>b <span style="color:red;">c</span> d</span>e
</body>
</html>
</code></pre>
http://stackoverflow.com/questions/619926/should-i-escape-shell-arguments-in-perl/619968#61996820Answer by runrig for Should I escape shell arguments in Perl?runrig2009-03-06T18:43:52Z2009-03-20T20:47:50Z<p>If you use <code>system $cmd, @args</code> rather than <code>system "$cmd @args"</code> (an array rather than a string), then you do not have to escape the arguments because no shell is invoked (see <a href="http://perldoc.perl.org/functions/system.html" rel="nofollow">system</a>). <code>system {$cmd} $cmd, @args</code> will not invoke a shell either even if $cmd contains metacharacters and @args is empty (this is documented as part of <a href="http://perldoc.perl.org/functions/exec.html" rel="nofollow">exec</a>). If the args are coming from user input, you will still want to untaint them. See <code>-T</code> in the <a href="http://perldoc.perl.org/perlrun.html" rel="nofollow">perlrun</a> docs, and the <a href="http://perldoc.perl.org/perlsec.html" rel="nofollow">perlsec</a> docs.</p>
<p>If you need to read the output or send input to the command, <code>qx</code> and <code>readpipe</code> have no equivalent. Instead, use <code>open my $output, "-|", $cmd, @args</code> or <code>open my $input, "|-", $cmd, @args</code> although this is not portable as it requires a real <code>fork</code> which means Unix only... I think. Maybe it'll work on Windows with it's simulated fork. A better option is something like <a href="http://search.cpan.org/dist/IPC-Run/" rel="nofollow">IPC::Run</a>, which will also handle the case of piping commands to other commands, which neither the multi-arg form of system nor the 4 arg form of open will handle.</p>
http://stackoverflow.com/questions/658060/perl-libxml-and-schemas/659026#6590263Answer by runrig for Perl, LibXML and Schemasrunrig2009-03-18T16:29:31Z2009-03-18T19:42:03Z<p>From the <a href="http://search.cpan.org/perldoc?XML::LibXML::Node" rel="nofollow">XML::LibXML docs</a>:</p>
<blockquote>
<p>A common mistake about XPath is to
assume that node tests consisting of
an element name with no prefix match
elements in the default namespace.
This assumption is wrong - by XPath
specification, such node tests can
only match elements that are in no
(i.e. null) namespace. ...(and
later)... ...The recommended way is to
use the <a href="http://search.cpan.org/perldoc?XML::LibXML::XPathContext" rel="nofollow">XML::LibXML::XPathContext</a>
module</p>
</blockquote>
<p>So, from the perspective of XPath, there is no "default" namespace...for any non-null namespace, you have to specify it in your XPath. The XML::LibXML::XPathContext module lets you create a prefix for any namespace to use in your XPath expression.</p>
http://stackoverflow.com/questions/635993/what-is-a-good-way-to-determine-dates-in-a-date-range/636388#6363883Answer by runrig for What is a good way to determine dates in a date range?runrig2009-03-11T21:10:07Z2009-03-13T00:07:58Z<p>Here's an example using <a href="http://search.cpan.org/dist/DateTime" rel="nofollow">DateTime</a>:</p>
<pre><code>use strict;
use warnings;
use DateTime;
my $d1 = DateTime->new( month => 1, day => 29, year => 2009);
my $d2 = DateTime->new( month => 2, day => 3, year => 2009);
while ($d1 <= $d2) {
print $d1->strftime("%m/%d/%Y"),"\n";
$d1->add(days => 1);
}
</code></pre>
http://stackoverflow.com/questions/471106/how-can-i-get-a-list-of-indices-on-a-sql-table-using-perl/471194#4711942Answer by runrig for How can I get a list of indices on a SQL table using Perl?runrig2009-01-22T22:57:57Z2009-03-06T23:49:55Z<p>There's a statistics_info() method in DBI, but unfortunately, the only DBD I've seen it implemented in so far is DBD::ODBC . So if you use ODBC (update: or PostgreSQL!) you're in luck. Otherwise sp_helpindex (or the sysindexes table) is about as good as it gets for Sybase.</p>
<p>Here's what I've used for Sybase (in my own OO module - it returns only unique indexes unless the all_indexes argument is true):</p>
<pre><code>{
my $sql_t = <<EOT;
select
sysindexes.name,
index_col(object_name(sysindexes.id), sysindexes.indid, syscolumns.colid) col_name
from sysindexes, syscolumns
where sysindexes.id = syscolumns.id
and syscolumns.colid <= sysindexes.keycnt
and sysindexes.id = object_id(%s)
EOT
sub index_info {
my ( $self, $table, $all_indexes ) = @_;
my $dbh = $self->{DBH};
my $sql = sprintf $sql_t, $dbh->quote($table);
$sql .= "and sysindexes.status & 2 = 2\n" unless $all_indexes;
my $sth = $dbh->prepare($sql);
$sth->execute();
my @col_names = @{$sth->{NAME_lc}};
my %row; $sth->bind_columns(\@row{@col_names});
my %ind;
while ($sth->fetch()) {
if ( $row{col_name} ) {
push @{$ind{$row{name}}}, lc($row{col_name});
}
}
return unless %ind;
return \%ind;
}
}
</code></pre>
<p>Or if your goal is to just copy indexes, maybe you should get the <a href="http://freshmeat.net/projects/dbschema.pl/" rel="nofollow">dbschema.pl</a> utility (which uses Sybase::DBlib). It will generate the "CREATE INDEX" statements for you.</p>
http://stackoverflow.com/questions/618953/how-can-i-redirect-the-output-from-one-filehandle-into-another/619581#6195811Answer by runrig for How can I redirect the output from one filehandle into another?runrig2009-03-06T16:54:29Z2009-03-06T18:02:12Z<p>I like <a href="http://search.cpan.org/dist/Proc-SafeExec/" rel="nofollow">Proc::SafeExec</a> it lets you tie together processes and file handles in almost arbitrary ways easily. Here's an example:</p>
<pre><code>use strict;
use warnings;
use Proc::SafeExec;
open(my $ls, "-|", "ls", "-l") or die "Err: $!";
open(my $fh, ">", "tmp.txt") or die "Err: $!";
my $p = Proc::SafeExec->new({
exec => [qw(sed -e s/a/b/)],
stdin => $ls,
stdout => $fh,
});
$p->wait();
</code></pre>
<p>After looking at IPC::Run, it looks a lot simpler...here's the same example using IPC::Run instead:</p>
<pre><code>use IPC::Run qw(run);
run [qw(ls -l)], "|", [qw(sed -e s/a/b/)], ">", "tmp.txt";
</code></pre>
http://stackoverflow.com/questions/611377/how-can-i-impress-people-with-perls-capabilities/612144#6121442Answer by runrig for How can I impress people with Perl's capabilities?runrig2009-03-04T19:45:40Z2009-03-05T23:05:47Z<p>I think being able to <a href="http://www.perlmonks.org/?node%5Fid=648493" rel="nofollow">write macros to manipulate the Windows Clipboard</a> is pretty impressive. It has all sorts of possibilities, and gives you the power of Perl from just about any Windows app where you can cut/paste text.</p>
http://stackoverflow.com/questions/611981/how-can-i-record-changes-made-during-in-place-editing-in-perl/612044#6120448Answer by runrig for How can I record changes made during in-place editing in Perl?runrig2009-03-04T19:23:28Z2009-03-05T19:07:00Z<p>Something like this to send all changes to STDERR:</p>
<pre><code>perl -pi -e '$old = $_; s/find/replace/g and warn "${ARGV}[$.]: $old $_"; close ARGV if eof' $1/*.html
</code></pre>
<p>Updated: Fixed $. on multiple files.</p>
http://stackoverflow.com/questions/587457/expand-string-inline-in-perl/587509#5875090Answer by runrig for Expand string inline in Perlrunrig2009-02-25T19:44:57Z2009-02-26T00:48:03Z<p>What's your question? Perhaps you are looking for <a href="http://search.cpan.org/dist/ack" rel="nofollow">ack</a>? It seems like you are attempting to <a href="http://perldoc.perl.org/functions/eval.html" rel="nofollow">eval</a> a string (usually a bad idea). You should at least use qr//. Maybe something like:</p>
<pre><code>my @regexs = map qr/(?i)$_/, @ARGV;
my $search = sub {
for my $re (@regexes) {
return unless /$re/;
}
return 1;
}
open IP, "<", "vm.txt" or die "Err: $!";
while (<IP>) {
print $_ if $search->();
}
</code></pre>
<p>This could easily be improved. And it's not tested. YMMV.</p>
http://stackoverflow.com/questions/576536/how-can-i-print-a-literal-null-for-undefined-values-in-perl/579431#5794311Answer by runrig for How can I print a literal 'null' for undefined values in Perl?runrig2009-02-23T21:24:17Z2009-02-23T21:24:17Z<p>You don't say what database you're using, but you can do it at the SQL level if you don't mind a non-portable solution, e.g., in Oracle:</p>
<pre><code>select NVL(some_column, 'NULL')
from some_table
</code></pre>
http://stackoverflow.com/questions/569772/how-do-i-read-two-items-at-a-time-in-a-perl-foreach-loop/571673#5716730Answer by runrig for How do I read two items at a time in a Perl foreach loop?runrig2009-02-20T23:39:31Z2009-02-20T23:39:31Z<p>here's an implementation of natatime that doesn't make a copy of the list:</p>
<pre><code>sub natatime {
my $n = shift;
my $list = \@_;
sub {
return splice @$list, 0, $n;
}
}
my $it = natatime(3, qw(1 2 3 4 5 6));
while ( my @list = $it->() ) {
print "@list\n";
}
</code></pre>
http://stackoverflow.com/questions/1717963/in-perl-how-can-i-get-the-fields-in-this-csv-string-into-an-array-without-spaces/1718000#1718000Comment by on In Perl, how can I get the fields in this CSV string into an array without spaces?2009-11-12T00:13:57Z2009-11-12T00:13:57ZSee my map comment on Paul Nathan's answer.http://stackoverflow.com/questions/1717963/in-perl-how-can-i-get-the-fields-in-this-csv-string-into-an-array-without-spaces/1717990#1717990Comment by on In Perl, how can I get the fields in this CSV string into an array without spaces?2009-11-12T00:11:37Z2009-11-12T00:11:37Zs/// will transform the elements in @groups, therefore this is a useless use of map. You can just do: s/^\s+//, s/\s+$// for @groups;
Or use Filter in Algorithm::Loops.http://stackoverflow.com/questions/1707117/how-can-i-install-perls-dbi-module-on-ubuntuComment by on How can I install Perl's DBI module on Ubuntu?2009-11-10T16:00:04Z2009-11-10T16:00:04ZPerhaps you forgot to use tar/gzip? or cd to the directory created by tar?http://stackoverflow.com/questions/132734/presentations-on-switching-from-perl-to-python/133247#133247Comment by on Presentations on switching from Perl to Python2009-10-29T22:16:07Z2009-10-29T22:16:07ZThis might work, if you're not only indisputably ahead of the curve, but indisputably ahead of everyone else. Otherwise, you're likely to get "So what, perl can do that too", and rightfully so.http://stackoverflow.com/questions/1588795/how-can-i-speed-up-perls-processing-of-fixed-width-data/1588819#1588819Comment by on How can I speed up Perl's processing of fixed-width data?2009-10-22T15:48:39Z2009-10-22T15:48:39Z.+ is greedy, so you'll leave one space at the end of your string. You want .+? there.http://stackoverflow.com/questions/1489355/managing-perl-habits-in-a-python-environment/1489505#1489505Comment by on Managing Perl habits in a Python environment2009-10-02T18:00:48Z2009-10-02T18:00:48Z@steveha: In perl, you can have $x, @x, %x, and *x, all different types with the same name. Not entirely best practice to do that, but it's there if you want it. (But yes, "@x" means array x if that's all you're after).http://stackoverflow.com/questions/1478083/how-can-i-efficiently-match-many-different-regex-patterns-in-perl/1478186#1478186Comment by on How can I efficiently match many different regex patterns in Perl?2009-09-25T16:30:50Z2009-09-25T16:30:50Z /o is obsolete/deprecated. Use qr//. And I think in modern perls, as long as $regex doesn't change, then it won't be recompiled anyway. But don't quote me :-)http://stackoverflow.com/questions/1464923/how-can-i-print-only-every-third-index-in-perl-or-python/1465560#1465560Comment by on How can I print only every third index in Perl or Python?2009-09-23T15:09:22Z2009-09-23T15:09:22Zstate is nice. But if you execute that line more than once, it'll only work the first time unless the list length is a multiple of 3.http://stackoverflow.com/questions/1406291/how-can-i-use-an-array-as-a-hash-value-in-perl/1406303#1406303Comment by on How can I use an array as a hash value in Perl?2009-09-10T16:31:28Z2009-09-10T16:31:28ZThe parenthesis are superfluous. You might say @array=() to empty an array, but you never need 'my @array=()'http://stackoverflow.com/questions/619926/should-i-escape-shell-arguments-in-perl/624676#624676Comment by on Should I escape shell arguments in Perl?2009-08-27T18:00:06Z2009-08-27T18:00:06Zs/backslash/double-quote/ in comment above.http://stackoverflow.com/questions/1331454/how-can-i-check-the-status-of-the-first-program-in-pipeline-in-perls-system/1331538#1331538Comment by on How can I check the status of the first program in pipeline in Perl's system()?2009-08-27T17:03:08Z2009-08-27T17:03:08Z@vt: you can accomplish something similar with open(..., "-|", ...) or open(..., "|-", ...) (fork with STDIN/STDOUT attached between child processes), and exec(...), but IPC::Run or Proc::SafeExec is so much easier to use. I'd get over your preference if I were you, rather than using a temp file (which is another type of dependency). I have some code here: perlmonks.org/?node_id=246397http://stackoverflow.com/questions/1331454/how-can-i-check-the-status-of-the-first-program-in-pipeline-in-perls-system/1331478#1331478Comment by on How can I check the status of the first program in pipeline in Perl's system()?2009-08-26T15:08:17Z2009-08-26T15:08:17ZNo need for a temp file. JB has a better answer below.http://stackoverflow.com/questions/1331454/how-can-i-check-the-status-of-the-first-program-in-pipeline-in-perls-system/1331538#1331538Comment by on How can I check the status of the first program in pipeline in Perl's system()?2009-08-26T14:57:07Z2009-08-26T14:57:07ZI'm sure IPC::Run is great, but back when I was looking for something similar I found Proc::SafeExec first. It worked great, though seems a little more verbose then IPC::Run. It's nice to have options :-)http://stackoverflow.com/questions/1248812/what-does-the-s-operator-in-perl-do/1248825#1248825Comment by on What does the "s!" operator in Perl do?2009-08-09T01:50:07Z2009-08-09T01:50:07ZPerl borrows from a lot of languages. It borrowed this from sed.http://stackoverflow.com/questions/1202869/informatica-powercenter-vs-custom-perl-etl-job/1236369#1236369Comment by on informatica powercenter vs custom perl ETL job?2009-08-07T16:09:44Z2009-08-07T16:09:44ZVille M: yes it has a nice GUI that would be tough to just "throw together" quickly. The idea is that you could quickly throw together the 20% of the app that you'll use 90% of the time. And you'll still be able to do easily things that are totally bass ackwards in Informatica or what it can't do at all.