User Axeman - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T12:18:20Z http://stackoverflow.com/feeds/user/11289 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1829751/how-can-i-make-perl-functions-that-use-by-default/1830571#1830571 5 Answer by Axeman for How can I make Perl functions that use $_ by default? Axeman 2009-12-02T03:59:35Z 2009-12-02T03:59:35Z <p>The prototype that Sinan talks about is the best current way. But for earlier versions, there is still the old standby: </p> <pre><code>sub trim { # v-- Here's the quick way to do it. my $str = @_ ? $_[0] : $_; # That was it. $str =~ s/^\s+|\s+$//; return $str; } </code></pre> <p>Of course, I have a <code>trim</code> function with more features and handles more arguments and list context, but it doesn't demonstrate the concept as well. The ternary expression is a quick way to do what the '_' prototype character now does. </p> <p>...BTW, Perl rules!</p> http://stackoverflow.com/questions/1824240/how-do-i-find-all-lib-directories-under-a-windows-path/1824531#1824531 2 Answer by Axeman for How do I find all lib directories under a Windows path? Axeman 2009-12-01T07:22:48Z 2009-12-01T07:22:48Z <p>Any number of things. </p> <ul> <li>I hope you're using backticks that are getting lost in your post: </li> <li>But you don't need <code>split</code>, if you use backticks, because it will come back as a list.</li> <li>I don't think <code>[L|l]</code> means what you think it means. If you just mean a capital "L" or a lowercase "l", the alternation symbol is not needed. The proper expression is <code>[Ll]</code> ( or <code>(?i:l)ib</code> which means that we localize the i-flag for the group.)</li> </ul> <p>So if it looks like this:</p> <pre><code> use File::Basename; my @dirs = grep { fileparse($_) =~ /^[Ll]ib/ } qx{dir /AD /B /S e:\\}; </code></pre> <p>That should work, if there is <em>anything</em> that matches that. Just make sure that you use the <code>qx</code> operator or backticks.</p> http://stackoverflow.com/questions/1822312/how-does-an-object-access-the-symbol-table-for-the-current-package/1822550#1822550 6 Answer by Axeman for How does an object access the symbol table for the current package? Axeman 2009-11-30T21:33:50Z 2009-11-30T21:47:39Z <p>You just want <a href="http://search.cpan.org/perldoc?perlfunc#caller" rel="nofollow"><code>caller</code></a></p> <p><code>caller</code> tells you the package from which it was called. (Here I added some standard perl.)</p> <pre><code>use Symbol qw&lt;qualify_to_ref&gt;; #... my $pkg = caller; my $symb = qualify_to_ref( 'run_me', $pkg ); my $run_me = *{$symb}{CODE}; $run_me-&gt;() if defined $run_me; </code></pre> <p>To look it up and see if it's defined and then look it up to call it would duplicate it as standard perl doesn't do Common Subexpression Elimination, so you might as well 1) retrieve it, and 2) check definedness of the slot, and 3) run it if it is defined. </p> <p>Now if you create an object in one package and use it in another, that's not going to be too much help. You would probably need to add an additional field like <code>'owning_package'</code> in the constructor. </p> <pre><code>package MyMod; #... sub new { #... $self-&gt;{owning_package} = caller || 'main'; #... } </code></pre> <p>Now <code>$x-&gt;{owning_package}</code> will contain <code>'main'</code>. </p> http://stackoverflow.com/questions/1821841/why-does-my-perl-cgi-complain-about-premature-end-of-script-headers/1822035#1822035 0 Answer by Axeman for Why does my Perl CGI complain about "Premature end of script headers"? Axeman 2009-11-30T19:56:20Z 2009-11-30T21:24:22Z <p>It's best that you try a simpler version of what you're trying to do.</p> <p>Try this: </p> <ul> <li>Create something like <code>test2.pl</code> which does something simpler. </li> <li><p>Run a simplified script.</p> <pre><code>#!/bin/perl use feature 'say'; use strict; use warnings; use Data::Dumper; use English qw&lt;$OS_ERROR&gt;; my $rc = system( "$base_path/test2.pl" ); say "\$rc=$rc"; say $OS_ERROR; </code></pre></li> </ul> <p>Now, </p> <ol> <li>If <code>$rc</code> is <code>0</code>. Then it worked to execute the script that way. Otherwise, <code>$OS_ERROR</code> should tell you. </li> <li>If this all works, then you could try to execute the original script and see if that works as well.</li> <li>If that works, then it could be the state of the program at the time it is called.</li> </ol> <p>But, as other people have noted, unless you're all done running the script, <code>exec</code>-ing from the script is not what you want to do, even if it were a program. That would just load the program over the space used by the script.</p> <p>Using the <a href="http://search.cpan.org/~dapm/perl-5.10.1/pod/perlop.pod#qx" rel="nofollow"><code>qx</code></a> or backticks (\<code>) will allow the command line to be interpreted by the shell which will handle the shebangs (</code>#!`) in the perl script and return the output of the script. </p> http://stackoverflow.com/questions/1661796/why-doesnt-perl-support-the-normal-operator-to-index-a-string/1662885#1662885 5 Answer by Axeman for Why doesn't Perl support the normal [] operator to index a string? Axeman 2009-11-02T18:35:21Z 2009-11-16T00:54:47Z <p>What's the name of the string? It's scalar, so the sigil will obviously be <code>$</code>. The rest of it follows standard variable naming standards; let's say <code>$abc</code>.</p> <pre><code>my $abc = 'A string'; </code></pre> <p>As sigils signify <em>context</em>s of the expression, and are not a part of the name, we have a collision. </p> <pre><code>my $def = $abc[2]; </code></pre> <p>is not the 3rd letter of the scalar <code>$abc</code>, but the third element from an array--sharing the same symbol (but with a different <em>sigil</em>) : <code>@abc</code>. </p> <p>So that expression, which was probably designed early for script-like symbol resolution, already has a meaning assigned to it. </p> <p>Of course, as <em>Brad's</em> answer points out, there can only be a meaning to that if we make implicit assumptions as to what makes a part of the string an "item" in the "list". The more encodings you have to use, the <em>worse</em> those default assumptions work. </p> <p>You might find a syntax you prefer more using <a href="http://search.cpan.org/perldoc?autobox" rel="nofollow">autobox</a>:</p> <pre><code>$string-&gt;ch( 2 ); </code></pre> <p>(You would have to write <code>ch</code> yourself.) But that is necessarily more verbose than simply putting bracket's onto strings.</p> http://stackoverflow.com/questions/1671540/what-is-the-usefulness-of-check-unitcheck-and-init-blocks-in-perl/1671790#1671790 4 Answer by Axeman for What is the usefulness of CHECK, UNITCHECK and INIT blocks in Perl? Axeman 2009-11-04T05:14:49Z 2009-11-04T14:27:42Z <p>Well <code>BEGIN</code> blocks are run at compile time, as you know. So I keep it to code that needs to be run in order for my module to be imported. </p> <p>I wrote a script wrapper, to do everything that was being done in boilerplate code that occurred in a couple hundred scripts. </p> <ul> <li>There were things I had to do to get the module reading to be <code>use</code>-d. That I ran in <code>BEGIN</code> blocks and <code>import</code> sub. </li> <li>But there was also all that boilerplate that <em>initialized</em> the services the script would use. Therefore, I ran these actions in the <code>INIT</code> blocks. </li> <li>And ran necessary cleanup and exit code in the <code>END</code> blocks. </li> </ul> <p>I think CHECK makes sense if you write modules with XS engines, but I have only used it a handful of times. One time I think it was to check out the suggestions in <em>Intermediate Perl</em>. And I can't offhand remember the other reasons. </p> <p>But I use <code>INIT</code> blocks when I feel that code is more part of the script, than setting up the module. In essence, I only do what is necessary during compile time. </p> http://stackoverflow.com/questions/79322/is-there-a-really-good-web-resource-on-moving-to-moose 7 Is there a really good web resource on moving to Moose? Axeman 2008-09-17T02:33:21Z 2009-10-28T01:48:31Z <p>The documentation with the module itself is pretty thin, and just tends to point to MOP.</p> http://stackoverflow.com/questions/1602870/how-do-i-store-a-2d-array-in-a-hash-in-perl/1603205#1603205 3 Answer by Axeman for How do I store a 2d array in a hash in Perl? Axeman 2009-10-21T19:54:48Z 2009-10-21T19:54:48Z <p>Perl is a <em>very</em> expressive, language. You can do that all with the statement below. </p> <pre><code>$self-&gt;{matrix} = [ map { [ (0) x $seq2 ] } 1..$seq1 ]; </code></pre> <p>Is this golf? Maybe, but it <em>also</em> avoids mucking with the finicky <code>push</code> prototype. I explode the statement below:</p> <pre><code>$self-&gt;{matrix} = [ # we want an array reference map { # create a derivative list from the list you will pass it [ (0) x $seq2 ] # another array reference, using the *repeat* operator # in it's list form, thus creating a list of 0's as # long as the value given by $seq2, to fill out the # reference's values. } 1..$seq1 # we're not using the indexes as anything more than # control, so, use them base-1. ]; # a completed array of arrays. </code></pre> <p>I have a standard subroutine to make tables:</p> <pre><code>sub make_matrix { my ( $dim1, $dim2 ) = @_; my @table = map { [ ( 0 ) x $dim2 ] } 1..$dim1; return wantarray? @table : \@table; } </code></pre> <p>And here's a more generalized array-of-arrays function: </p> <pre><code>sub multidimensional_array { my $dim = shift; return [ ( 0 ) x $dim ] unless @_; # edge case my @table = map { scalar multidimensional_array( @_ ) } 1..$dim; return wantarray ? @table : \@table; } </code></pre> http://stackoverflow.com/questions/1598053/how-can-i-remove-external-links-from-html-using-perl/1598399#1598399 6 Answer by Axeman for How can I remove external links from HTML using Perl? Axeman 2009-10-21T02:14:46Z 2009-10-21T18:15:10Z <p>A bit more like a SAX type parser is <a href="http://search.cpan.org/perldoc?HTML%3A%3AParser" rel="nofollow"><code>HTML::Parser</code></a>:</p> <pre><code>use strict; use warnings; use English qw&lt;$OS_ERROR&gt;; use HTML::Parser; use List::Util qw&lt;first&gt;; my $omitted; sub tag_handler { my ( $self, $tag_name, $text, $attr_hashref ) = @_; if ( $tag_name eq 'a' ) { my $href = first {; defined } @$attr_hashref{ qw&lt;href HREF&gt; }; $omitted = substr( $href, 0, 7 ) eq 'http://'; return if $omitted; } print $text; } sub end_handler { my $tag_name = shift; if ( $tag_name eq 'a' &amp;&amp; $omitted ) { $omitted = false; return; } print shift; } my $parser = HTML::Parser-&gt;new( api_version =&gt; 3 , default_h =&gt; [ sub { print shift; }, 'text' ] , start_h =&gt; [ \&amp;tag_handler, 'self,tagname,text,attr' ] , end_h =&gt; [ \&amp;end_handler, 'tagname,text' ] ); $parser-&gt;parse_file( $path_to_file ) or die $OS_ERROR; </code></pre> http://stackoverflow.com/questions/1596658/how-can-i-sum-each-column-of-my-data-in-perl/1596712#1596712 4 Answer by Axeman for How can I sum each column of my data in Perl? Axeman 2009-10-20T19:11:28Z 2009-10-20T22:29:07Z <p>What you're trying to do does not seem that complex. If <code>'=='</code> is your column delimiter:</p> <pre><code>use strict; use warnings; use List::MoreUtils qw&lt;pairwise&gt;; our ( $a, $b ); my @totals; while ( my $record = &lt;DATA&gt; ) { chomp $record; my @data = split /==/, $record; push @totals, ( 0 ) x ( @data - @totals ) if @data &gt; @totals; pairwise { $a += $b } @totals, @data; } __DATA__ 1==0==2 5==3==2 7==1==0 13==4==4 </code></pre> http://stackoverflow.com/questions/1592329/how-can-i-speed-up-my-perl-regex-matching/1596898#1596898 2 Answer by Axeman for How can I speed up my Perl regex matching? Axeman 2009-10-20T19:49:57Z 2009-10-20T19:55:32Z <p><code>(.*)</code> means that you are dealing with any number of repetitions of " SCF SF " before you find the one that indicates it's the next capture, by making it non-greedy you're still handling the capability that even 'SCF SF' would appear in the capture after 'FF'. I think you are handling a lot of cases you don't need. </p> <p>The best way to optimize a regular expression sometimes makes it more cryptic--but you definitely find ways to make the expression <em>fail earlier</em>. <code>(.*?)</code> while not being "greedy" is definitely <em>too</em> tolerant. </p> <p>Below is a more verbose, but faster failing alternative to your second capture. </p> <pre><code>((?:[^S]|S[^C]|SC[^F]|SCF[^ ]|SCF [^S]|SCF S[^F])*) </code></pre> <p>But you can optimize it even more if you think that the string <code>\bSCF\b</code> should automatically make the capture commit and expect only "\bSCF SF\b". Thus you could re-write that as: </p> <pre><code>((?:[^S]|S[^C]|SC[^F]SCF\B)*) SCF SF </code></pre> <p>But you can optimize these strings even more by backtracking control. If you think that there is no way in the world that SCF would ever occur as a word and not be followed by SF on valid input. To do that, you add another group around it, with brackets <code>(?&gt;</code> and <code>)</code>.</p> <pre><code>(?&gt;((?:[^S]|S[^C]|SC[^F]SCF\B)*)) SCF SF </code></pre> <p>That means that the matching logic will in no way try to reassess what it captured. If the characters after this fail to be " SCF SF " the whole expression fails. And it fails long before it ever gets to try to accommodate "MV" and other sub-expressions. </p> <p>In fact, given certain expressions about the uniqueness of the delimiters, the fastest performance for this expression would be: </p> <pre><code>$text_normal = qr{^(\/F\d+) FF (?&gt;((?:[^S]|S[^C]|SC[^F]SCF\B)*))SCF SF (?&gt;((?:[^M]|M[^V]|MV\B)*))MV (?&gt;(\((?:[^S]|S[^H]|SH.)*))SH$}; </code></pre> <p>Additionally, the verbose, exhaustive negative matches can be alternative expressed by negative lookaheads--but I have no idea on how that works on performance. But negative look aheads would work like this: </p> <pre><code>((?:.(?! SCF))*) SCF SF </code></pre> <p>This means that for this capture I want any character that is not a space starting the string " SCF SF ". </p> http://stackoverflow.com/questions/1595557/how-can-i-control-the-formatting-of-datadumpers-output/1596775#1596775 0 Answer by Axeman for How can I control the formatting of Data::Dumper's output? Axeman 2009-10-20T19:22:57Z 2009-10-20T19:22:57Z <p>If you're just looking for dump output: <a href="http://search.cpan.org/perldoc?Smart%3A%3AComments." rel="nofollow"><code>Smart::Comments</code></a>.</p> <p>You just <code>use</code> it. </p> <pre><code>use Smart::Commments; </code></pre> <p>And then you put any simple variable in a three-hash comment, like so:</p> <pre><code>my $v = black_box_process(); ### $v </code></pre> <p>And it dumps it out in almost the prettiest print possible. </p> <p>You can also manage more complex expressions like so: </p> <pre><code>### ( $a &amp;&amp; ( $b ^ ( $c || $d ))) : ( $a &amp;&amp; ( $b ^ ( $c || $d ))) </code></pre> <p>But you have to watch it for "comma paths". </p> <pre><code>### $My::Package::variable </code></pre> <p>or </p> <p>### %My::Package::</p> <p>has <em>never</em> worked in my experience. If I want them to work then I need something like this: </p> <pre><code>my %stash = %My::Package::; ### %stash </code></pre> <p>It also does a number of other cute tricks, which you can see if you read the documentation.</p> http://stackoverflow.com/questions/1540539/how-do-you-localize-a-number-of-legacy-globals-without-eval 4 How do you localize a number of legacy globals without eval? Axeman 2009-10-08T21:16:15Z 2009-10-08T21:41:02Z <p>I'm asking this question because I finally solved a problem that I have been trying to find a technique for in a number of cases. I think it's pretty neat so I'm doing a Q-and-A on this. </p> <p>See, if I could use <code>eval</code>, I would just do this: </p> <pre><code>eval join( "\n" , map { my $v = $valcashe{$_}; sprintf( '$Text::Wrap::%s = %s', $_ , ( looks_like_number( $v ) ? $v : "'$v'" ) ) } ); Text::Wrap::wrap( '', '', $text ); </code></pre> <p>I even tried being tricky, but it seems that <code>local</code> localizes the symbol to the <em>virtual</em> block, not the physical block. So this doesn't work:</p> <pre><code>ATTR_NAME: while ( @attr_names ) { no strict 'refs'; my $attr_name = shift; my $attr_name = shift @attr_names; my $attr_value = $wrapped_attributes{$attr_name}; my $symb_path = "Text\::Wrap\::$attr_name"; local ${$symb_path} = $attr_value; next ATTR_NAME if @attr_names; Text::Wrap::wrap( '', '', $text ); } </code></pre> <p>Same <em>physical block</em>, and I tested the package variables before and after being set, and they even showed the proper value on <em>their</em> time through the loop. But testing showed that only the <em>last</em> variable passed through retained its value for the call to <code>wrap</code>. So values only stayed localized <em>until</em> the end of the loop. </p> <p>I think the solution is neat--even if arcane perl magick. But the end result is good because it means I can wrap legacy code that relies on package-scoped variables and be assured that the values set will be as short-lived as possible. </p> http://stackoverflow.com/questions/1540539/how-do-you-localize-a-number-of-legacy-globals-without-eval/1540583#1540583 6 Answer by Axeman for How do you localize a number of legacy globals without eval? Axeman 2009-10-08T21:24:50Z 2009-10-08T21:24:50Z <p>Axeman, you idiot! The package stash is a <em>hash</em> too! This works: </p> <pre><code>local @Text::Wrap::{ keys %wrapped_attributes } = \( values %wrapped_attributes ) ; </code></pre> <p>This does the following: </p> <ol> <li>It accesses the array slice of <code>Text::Wrap</code>'s symbol table and returns the named symbols.</li> <li>Because it's a <em>symbol</em> and not a scalar, in order for perl to know the correct slot, you have to assign <em>references</em>. This is true for arrays and hashes as well, but we all know that their references are more common.</li> <li>The <code>\( ... )</code> syntax passes back a reference for each item in the list. </li> </ol> <p>So we localize each variable for each key in <code>%wrapped_attributes</code>, and we assign it a reference for each value there. </p> <p>It's ugly and arcane, and it's hard to move it out of the way each time I need it--but with it, I can pre-specify and <em>delay</em> the localization to select places where I can put up Damien Conway's suggested barbed wire and danger signs.</p> <p>If I'm going to use it, it has to be just that ugly where I use it. </p> http://stackoverflow.com/questions/1533862/connection-resets-with-simple-perl-script/1533959#1533959 1 Answer by Axeman for Connection resets with simple Perl script Axeman 2009-10-07T20:22:42Z 2009-10-07T21:24:20Z <p>Isn't <code>fork</code> on Win32 known as <em>broken</em>?</p> <p>Really since your child process is doing something totally different from your parent section, you might be better off with <a href="http://search.cpan.org/perldoc?perlthrtut" rel="nofollow">threads</a>. </p> <p>In answer to your question in the comments, just think about replacing all your forking logic (!!) with </p> <pre><code>$peer_name = $connection-&gt;peerhost(); threads-&gt;create( \&amp;do_it, $connection ); say "Got connection from $peer_name"; </code></pre> <p>( See <a href="http://search.cpan.org/perldoc?perlthrtut#Creating%5FThreads" rel="nofollow">this</a> for example. ) And don't worry about closing connection anywhere else but the server thread. </p> http://stackoverflow.com/questions/1526859/does-perl-have-something-similar-to-phps-constant/1526892#1526892 14 Answer by Axeman for Does Perl have something similar to PHP's constant()? Axeman 2009-10-06T17:11:29Z 2009-10-06T19:21:40Z <p>What's wrong with <a href="http://search.cpan.org/perldoc?Readonly" rel="nofollow"><code>Readonly</code></a>? </p> <p>If it's too slow, you can supplement it with <a href="http://search.cpan.org/perldoc?Readonly%3A%3AXS" rel="nofollow"><code>Readonly:XS</code></a>. But if you don't like <a href="http://search.cpan.org/perldoc?Readonly" rel="nofollow"><code>Readonly</code></a>, there's always the older <a href="http://search.cpan.org/perldoc?constant" rel="nofollow"><code>constant</code></a>. </p> <pre><code>use constant PI =&gt; 3.14159265; </code></pre> <p>Just remember</p> <ol> <li>They work like subs, so they don't interpolate without work.</li> <li><p>If you want to create multiple constants in one statement, you need to pass a hash reference.</p> <pre><code>use constant { PI =&gt; 3.14159265 , E =&gt; 2.71828183 }; </code></pre></li> </ol> <p><hr/></p> <h2>From Your Example:</h2> <p>Judging from your example, there's no reason why a readonly <em>hash</em> couldn't do the same thing. </p> <pre><code>Readonly::Hash my %field_example =&gt; { L =&gt; 25, O =&gt; 345 }; </code></pre> <p>Then you could use it anywhere you'd want to cobble the constant: </p> <pre><code>print "The example is $field_example{$var}\n"; </code></pre> <p>OR you could do it this way: </p> <pre><code>Readonly::Hash my %field =&gt; { example =&gt; { L =&gt; 25, O =&gt; 345 } , name =&gt; { L =&gt; 'Lion', O =&gt; 'ocelot' } }; </code></pre> <p>And call it this way: </p> <pre><code>$field{$var}{L}; </code></pre> <p>You can get a lot of mileage about not trying to make a language do what it has better support for doing in another way. </p> <h3>Cognate to PHP <code>constant</code></h3> <p>However, if you want to do it that way, then my suggestion is that the following sub is a way of doing the same ( and avoids an <code>eval</code> ):</p> <pre><code>sub read_constant { use Symbol qw&lt;qualify_to_ref&gt;; my $name = join( '', @_ ); # no need to concatenate before passing my $constant; # use the first that works: calling package and then "" (main) for my $pkg ( scalar( caller ), "" ) { # get symbol reference my $symb_ref = qualify_to_ref( $name, $pkg ); # get the code slot $constant = *{$symb_ref}{CODE}; last if $constant; } return unless $constant; # call the sub named return $constant-&gt;(); } </code></pre> <p>You'd call it like this: </p> <pre><code>$value = read_constant( 'FIELD_', $var, 'L' ); </code></pre> <p>One last thing, is that you could even put a test in front to make sure that it is only a all cap string: </p> <pre><code>Carp::croak "Invalid constant name '$name'" if $name =~ /[^\p{UpperCase}_]/; </code></pre> http://stackoverflow.com/questions/1520459/why-do-i-get-a-trailing-1-after-perls-printf-output/1520721#1520721 8 Answer by Axeman for Why do I get a trailing '1' after Perl's printf output? Axeman 2009-10-05T15:18:04Z 2009-10-05T15:18:04Z <p>Only <a href="http://search.cpan.org/perldoc?perlfunc#sprintf" rel="nofollow"><code>sprintf</code></a> <em>returns</em> a printable value. <a href="http://search.cpan.org/perldoc?perlfunc#printf" rel="nofollow"><code>printf</code></a> <em>prints</em> the value and returns <code>1</code> to tell you that output was a success. </p> <p>The output you show is exactly the output I would expect if you were simply to erase the <code>s</code>-es from the beginning of the calls. </p> <pre><code>sub to_from_dates { my ($day, $month, $year) = (localtime)[3,4,5]; my $to_date=printf("%02d/%02d/%04d", $month+1, $day, $year+1900); # printed: 10/05/2009 (no carriage return) # $to_date = '1'; my $from_date=printf("%02d/%02d/%04d", $month+1, $day, $year+1899); # printed: 10/05/2008 (no carriage return) # $from_date = '1'; return ($from_date,$to_date); } ($from_date,$to_date)=to_from_dates(); # returns ( 1, 1 ) # output: 10/05/200910/05/2008 print $from_date."\n"; # prints "1\n"; &lt;- first line feed # output: 10/05/200910/05/20081\n print $to_date."\n"; # prints "1\n"; &lt;- second line feed. # output: 10/05/200910/05/20081\n1\n </code></pre> http://stackoverflow.com/questions/1504975/how-can-i-use-grep-to-see-if-my-word-in-a-array-has-a-match-with-list-of-word-in/1505894#1505894 1 Answer by Axeman for How can I use grep to see if my word in a array has a match with list of word in dictionary and extract the exact single word? Axeman 2009-10-01T19:13:48Z 2009-10-01T19:13:48Z <p>I would use <a href="http://search.cpan.org/perldoc?List%3A%3AUtil#first" rel="nofollow"><code>List::Util::first</code></a> for that. It stops processing the list after the first answer. <code>grep</code> won't do that.</p> <pre><code>if( defined first { /$word/ } @list ) { print "Matched and Found\n"; } else { print "Not Matched\n"; } </code></pre> http://stackoverflow.com/questions/1496832/does-perl-perform-common-subexpression-elimination/1497017#1497017 1 Answer by Axeman for Does Perl perform common subexpression elimination? Axeman 2009-09-30T09:27:36Z 2009-09-30T09:27:36Z <p>No, but <em>I</em> do. </p> <p>Now, I don't unroll loops by hand, because loops are an easier concept once you're familiar with programming. Because you could be doing anything with a <em>sequence</em> of commands, the loop makes it clear that you're repeating a task. </p> <p>But CSE is something that makes more efficient code regardless of the implementation of the language. So I do it. It doesn't make the code baroque, and it works in languages where it's not automatically included. </p> <p>Perl offers <em>compression</em> of syntax so there are often less subexpressions that have to be hand-eliminated. </p> http://stackoverflow.com/questions/1476290/beginner-regex-multiple-replaces/1476709#1476709 1 Answer by Axeman for Beginner Regex: Multiple Replaces Axeman 2009-09-25T11:10:08Z 2009-09-25T11:10:08Z <p>My suggestion is you do this</p> <pre><code>my $text = 'My cat likes to eat tomatoes.'; my ( $format = $text ) =~ s/\b(cat|tomatoes)\b/%s/g; </code></pre> <p>Then you can just do this: </p> <pre><code>my $new_sentence = sprintf( $format, 'dog', 'pasta' ); </code></pre> <p>As well as this:</p> <pre><code>$new_sentence = sprintf( $format, 'tiger', 'asparagus' ); </code></pre> <p>I go with the others. You shouldn't <em>want</em> to do it all in one expression, or one line...but here is a way:</p> <pre><code>$text =~ s/\b(cat|tomatoes)\b/ ${{ qw&lt;cat dog tomatoes pasta&gt; }}{$1} /ge; </code></pre> http://stackoverflow.com/questions/1472425/how-can-i-open-a-word-document-read-only-from-perl/1473069#1473069 4 Answer by Axeman for How can I open a Word document read-only from Perl? Axeman 2009-09-24T17:24:16Z 2009-09-25T01:33:27Z <p>That's because you're doing it wrong. <code>GetObject</code> just opens an object with the default behavior. You should create the <code>Word.Application</code> ojbect: </p> <pre><code> my $word = Win32::OLE-&gt;new( 'Word.Application' ); </code></pre> <p>Then use the <code>Documents</code> collection <code>Open</code> method with the named parameter <code>ReadOnly</code>. Like so:</p> <pre><code> $doc = $word-&gt;Documents-&gt;Open( { FileName =&gt; $document_path, , ReadOnly =&gt; 1 } ); </code></pre> <p>Read <a href="http://msdn.microsoft.com/en-us/library/bb216319.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/bb216319.aspx</a> for the syntax for <code>Documents.Open</code></p> http://stackoverflow.com/questions/1438361/how-can-i-change-the-hostname-in-a-url-using-perl/1440094#1440094 1 Answer by Axeman for How can I change the hostname in a URL using Perl? Axeman 2009-09-17T17:00:27Z 2009-09-17T17:00:27Z <p>I think this is probably enough: </p> <pre><code># The regex specifies a string preceded by two slashes and all non-dots my ( $host_name ) = $url =~ m{//([^.]+)}; </code></pre> <p>And if you want to change it:</p> <pre><code>$url =~ s|^http://\K([^.]+)|$host_name_I_want|; </code></pre> <p>Or even: </p> <pre><code>substr( $url, index( $url, $host_name ), length( $host_name ), $host_name_I_want ); </code></pre> <p>This will expand the segment sufficiently to accommodate <code>$host_name_I_want</code>.</p> http://stackoverflow.com/questions/1426189/how-can-i-combine-overlapping-path-segments-to-get-the-full-path-in-perl/1427672#1427672 4 Answer by Axeman for How can I combine overlapping path segments to get the full path in Perl? Axeman 2009-09-15T14:51:13Z 2009-09-17T15:32:55Z <p>This regex below is better suited for eliminating duplicate path sequences. </p> <pre><code>qr{ ( [\\/] # 1. starts with a path break .+? # 2. whatever ) \1 # whatever was captured in the previous group # it forces us to backtrack on #2 until we have duplicates # it will necessarily have a path break at the beginning }x; </code></pre> <p>The regex provided by Dave Webb works as long as there are no repeated <em>letters</em> in the path. Just make the last node <code>'mmake'</code> and it breaks. </p> <p>I get: </p> <pre><code>original c:\checkout\omega\abc\mainline\omega\abc\mainline\host\mmake overlap m new c:\checkout\omega\abc\mainline\omega\abc\mainline\host\make </code></pre> <p>You want the repetition to be <em>directory names</em>, not characters.</p> <p>Also a simple substitution is all that's needed. Chances are when you see <code>^.*</code> or <code>.*$</code> in a regex, it's not needed. And it isn't needed any more in this one. </p> <p>In fact all of this can be done with: </p> <pre><code>$path =~ s/([\\\/]+.+?)\1/$1/; </code></pre> <p>Replace something and it's duplicate with that something.</p> <h3><a href="http://search.cpan.org/perldoc?File%3A%3ASpec" rel="nofollow"><code>File::Spec</code></a></h3> <p>By the way, <code>File::Spec</code> is the accepted way to concatenate directories in a platform-independent fashion: </p> <pre><code>my $path = File::Spec-&gt;catfile( $root, $client, $build ); $path =~ s/([\\\/]+.+?)\1/$1/; </code></pre> <p>I have a minor pet peeve with <code>File::Spec</code>, though. I <em>like</em> using <code>/</code> for directories. And perl <em>works</em> with <code>/</code> in a windows environment. As long as I stay in the confines of perl, I never have to separate paths with the <em>escape</em> character (in the C family of languages). <code>File::Spec</code> forces backslashes to be consistent with the windows platform. </p> <p>However, if that's what you're looking for, that's probably more reason to use it. </p> http://stackoverflow.com/questions/1395018/why-do-i-get-an-error-when-i-try-to-use-the-reptition-assignment-operator-with-an/1395161#1395161 1 Answer by Axeman for Why do I get an error when I try to use the reptition assignment operator with an array? Axeman 2009-09-08T17:16:15Z 2009-09-08T17:16:15Z <p>My guess is that Perl is not a language with full symbolic transformations. It tries to figure out what you mean. If you "list-ify" <code>@a</code>, by putting it in parens, it sort of loses what you wanted to assign it to. </p> <p>Notice that this does not do what we want: </p> <pre><code> my @b = @a x 3; # we'll get scalar( @a ) --&gt; '3' x 3 --&gt; '333' </code></pre> <p>But, this does: </p> <pre><code>my @b = ( @a ) x 3; </code></pre> <p>As does:</p> <pre><code>( @a ) = ( @a ) x 3; </code></pre> <p>So it seems that when the expression actally appears on both sides Perl interprets them in different contexts. It knows that we're assigning something, so it tries to find out what we're assigning to. </p> <p>I'd chalk it up to a bug, from a very seldom used syntax.</p> http://stackoverflow.com/questions/1364420/how-can-i-have-a-minimal-match-between-two-known-tokens/1364458#1364458 4 Answer by Axeman for How can I have a minimal match between two known tokens? Axeman 2009-09-01T20:25:25Z 2009-09-03T17:02:19Z <p>Although I don't like how much it backtracks, making the catchall <em>greedy</em> between <code>BEGIN</code> and <code>RATE</code> will allow you to skip to the <code>RATE</code> in the section where <code>CODE</code>=<code>XX</code>. Like this: </p> <pre><code>$tx = qr/(START \s+ ITEM \s+ = \s+ 9983 \s+ BEGIN .* RATE \s+ = \s+ )\d+ ... </code></pre> <p>The main problem with this is that it will jump into another <code>ITEM</code> if necessary, so you have to make sure you don't gobble up <code>STOP</code>. Like so: </p> <pre><code>my $tx = qr/(START \s+ ITEM \s+ = \s+ 9983 \s+ BEGIN (?: (?! \b STOP \b ) . )* RATE \s+ = \s+ )\d+ (.*? # Goes too far CODE \s+ = \s+ XX) /msx ; </code></pre> <p>It still backtracks more than I'd like.</p> <p>(An hour later) I realized that the <code>RATE</code> and the <code>CODE</code> field whose value is <code>XX</code> must not be divided by an <code>END</code>. Thus another solution is:</p> <pre><code>my $tx = qr/(START \s+ ITEM \s+ = \s+ 9983 \s+ BEGIN .*? RATE \s+ = \s+ )\d+ ((?:(?! ^ \s+ END \s* $ ) . )*? CODE \s+ = \s+ XX) /msx ; </code></pre> <p>( I revised this to only look for END by itself in a line. If <code>ADDITIONAL TEXT</code> could contain a single END, then it would be hard to parse no matter what)</p> <p>I'm thinking this one doesn't backtrack as much, because it just starts from <code>RATE =</code> and then scans for <code>CODE = </code> before it hits <code>END</code> if we don't have <code>CODE = XX</code>, then it prunes back to the position where it thought it matched <code>RATE</code> and goes looking for the next <code>RATE</code>. We could add the negative lookahead for <code>STOP</code> if we don't know that Item #9983 is definitely going to have a code of 'XX'. </p> <p><hr /></p> <p><strong>Edited</strong> to eliminate false <code>\s</code> problem.</p> <p><strong>Note:</strong> this now takes the following section: </p> <pre><code>START ITEM = 9983 BEGIN WORD RATE = 01 MORE WORDS CODE = AA STUFF END BEGIN TEXT MORE WORDS RATE = 99 ADDITIONAL TEXT &lt;-- DON'T END HERE! CODE = XX OTHER THINGS END STOP </code></pre> http://stackoverflow.com/questions/1370735/is-it-better-to-check-perl-hash-keys-for-truth-or-for-existence/1374086#1374086 0 Answer by Axeman for Is it better to check Perl hash keys for truth or for existence? Axeman 2009-09-03T15:20:17Z 2009-09-03T15:20:17Z <p>I usually check for <a href="http://search.cpan.org/perldoc?perlfunc#defined" rel="nofollow"><code>defined</code></a> values. That's the middle case that you're leaving out. Not quite "truth" not quite "exists" either. (Mostly, but not quite.)</p> <p>Now in theory, the more <em>general</em> way is <a href="http://search.cpan.org/perldoc?perlfunc#exists" rel="nofollow"><code>exists</code></a>, as in</p> <pre><code>if ( exists $hash{$key} ) return 'strawberry'; </code></pre> <p>This covers the case where the key exists and the value is <code>0</code>, or when the key has been assigned <code>undef</code>. The key just needs to <em>exist</em> to pass this test. </p> <p>However, I have <em>rarely</em> found the need to test the existence of a key. </p> <ol> <li><p>Hashes are often part of a defined API, and if you're processing them, you have some idea of the range of values that can be stored. The configuration item will be looking for specific things; and as unordered parameter keys, subroutines will be looking for specific things.</p></li> <li><p>I find the idea of an "infinite table" a very <em>flexible</em> concept. And <code>exists x</code> &lt;=> <code>defined x</code> works for that. Every conceivable value is "set" in the table, but only a finite number of keys are <em>defined</em>, the rest are considered to be undefined.</p> <p>As a result, usually though, unless a value is defined in a hash, I don't care what it is. I consider it a false value. Storing <code>undef</code> and not storing anything at all are equivalent in most things that I write. This is further motivated by the item below.</p></li> <li><p>Most of the time that I might need to know if a key is in the table, I need to use it for something else. First I store the value locally, and then test if for a defined value.</p> <pre><code> my $value = $hash{$key}; if ( defined $value ) { push @valid_values, $value; } </code></pre> <p>If I could be sure that there was some local common-subexpression optimization between the lookup for <code>exists</code> and the lookup to use the value, then I wouldn't be so picky about this. But I don't like to retrieve from a hash more than once. So I 1) cache the value and 2) check it--every time.</p></li> </ol> <p>That said, I can tighten the criteria <em>is I know</em> that the value should not be <code>0</code>, such as in a lookup or a parameter table. So I sometimes test for <em>truth</em>. But I also can tighten up the test for anything, anyway. </p> <pre><code> if ( ( $hash{$key} || '' ) =~ m/^(?:Bears|Lions|Packers|Vikings)$/ ) { $nfc_north++; } </code></pre> <ol> <li>Of course an operating principle here is that <code>defined</code> works for "unlimited" tables. Where every conceivable value is "set" in the table, but only a finite number of keys are <em>defined</em>. </li> </ol> <p>There is a case that you might be working on a totally anonymous hash. But then, what's your interest in the keys that can't be satisfied with <a href="http://perldoc.perl.org/perlfunc.html#keys" rel="nofollow"><code>keys</code></a> or <a href="http://search.cpan.org/perldoc?perlfunc#values" rel="nofollow"><code>values</code></a>? Even if you're making a all-purpose hash "convenience function", it's better not concerning yourself with existences of particular keys in order to be totally neutral to what somebody else has stored there. </p> http://stackoverflow.com/questions/1365876/for-a-c-java-programmer-what-scripting-language-should-i-learn-first/1366050#1366050 3 Answer by Axeman for For a C++/Java Programmer, what scripting language should I learn first? Axeman 2009-09-02T06:07:22Z 2009-09-02T06:07:22Z <p>I'll say Perl, because it has syntax most like C. </p> <ul> <li>Python creates blocks by colons and indentation (not very C-like). </li> <li>Ruby takes its queue from Python, but adds in some word-delimited blocks (kinda like Pascal)--although it just as often uses curly angle blocks as well.</li> </ul> <p>Of course, this might also be the reason you <em>don't</em> want to learn Perl, because you want a totally different type of syntax. But Perl has the following similarities.</p> <ul> <li>All blocks are delimited with <code>{</code> ... <code>}</code>. </li> <li>Statements are separated with <code>;</code> (Ruby uses <code>':'</code>)</li> <li>C logic operators <code>==</code>, <code>!=</code>, ... </li> <li>C ternary operator: <br/>&nbsp;&nbsp;<code>my $result = $test ? $true_value : $false_value</code></li> <li>OO Perl uses <code>-&gt;</code> for method dispatch: <br/>&nbsp;&nbsp;<code>$my_object-&gt;do_method()</code></li> <li>Classes are named <code>This::That::TheOther</code> and methods <code>This::That:do_that</code></li> <li>Printf format specifiers (as well as plain old <code>printf</code>) <br/>&nbsp;&nbsp;<code>printf "Your string is=\"%s\"\n", $your_string</code></li> </ul> http://stackoverflow.com/questions/1365922/how-do-i-find-a-date-which-is-three-days-earlier-than-a-given-date-in-perl/1366015#1366015 0 Answer by Axeman for How do I find a date which is three days earlier than a given date in Perl? Axeman 2009-09-02T05:49:53Z 2009-09-02T05:49:53Z <p>The neat thing about <a href="http://search.cpan.org/perldoc?POSIX#mktime" rel="nofollow"><code>mktime</code></a> is that it will handle any time of offset. It uses January=0; and Year 2009 = 109 in this scheme. Thus, printed month - 1 and full year - 1900. </p> <pre><code>use POSIX qw&lt;mktime&gt;; my ( $year, $month, $day ) = split '-', $date; my $three_day_prior = mktime( 0, 0, 0, $day - 3, $month - 1, $year - 1900 ); </code></pre> <p><code>mktime</code> is useful for finding the last day of the month as well. You just go to day 0 of the next month. </p> <pre><code>mktime( 0, 0, 0, 0, $month, $year - 1900 ); </code></pre> http://stackoverflow.com/questions/161872/hidden-features-of-perl/162601#162601 13 Answer by Axeman for Hidden features of Perl? Axeman 2008-10-02T14:31:18Z 2009-08-23T21:53:26Z <h3>New Block Operations</h3> <p>I'd say the ability to expand the language, creating pseudo block operations is one.</p> <ol> <li><p>You declare the prototype for a sub indicating that it takes a code reference first:</p> <pre><code>sub do_stuff_with_a_hash (&amp;\%) { my ( $block_of_code, $hash_ref ) = @_; while ( my ( $k, $v ) = each %$hash_ref ) { $block_of_code-&gt;( $k, $v ); } } </code></pre></li> <li><p>You can then call it in the body like so </p> <pre><code>use Data::Dumper; do_stuff_with_a_hash { local $Data::Dumper::Terse = 1; my ( $k, $v ) = @_; say qq(Hey, the key is "$k"!); say sprintf qq(Hey, the value is "%v"!), Dumper( $v ); } %stuff_for ; </code></pre></li> </ol> <p>(<code>Data::Dumper::Dumper</code> is another semi-hidden gem.) Notice how you don't need the <code>sub</code> keyword in front of the block, or the comma before the hash. It ends up looking a lot like: <code>map { } @list</code></p> <h3>Source Filters</h3> <p>Also, there are source filters. Where Perl will pass you the code so you can manipulate it. Both this, and the block operations, are pretty much don't-try-this-at-home type of things. </p> <p>I have done some neat things with source filters, for example like creating a very simple language to check the time, allowing short Perl one-liners for some decision making:</p> <pre><code>perl -MLib::DB -MLib::TL -e 'run_expensive_database_delete() if $hour_of_day &lt; AM_7'; </code></pre> <p><code>Lib::TL</code> would just scan for both the "variables" and the constants, create them and substitute them as needed. </p> <p>Again, source filters can be messy, but are powerful. But they can mess debuggers up something terrible--and even warnings can be printed with the wrong line numbers. I stopped using Damian's <a href="http://search.cpan.org/perldoc?Switch" rel="nofollow">Switch</a> because the debugger would lose all ability to tell me where I really was. But I've found that you can minimize the damage by modifying small sections of code, keeping them on the same line. </p> <h3>Signal Hooks</h3> <p>It's often enough done, but it's not all that obvious. Here's a die handler that piggy backs on the old one. </p> <pre><code>my $old_die_handler = $SIG{__DIE__}; $SIG{__DIE__} = sub { say q(Hey! I'm DYIN' over here!); goto &amp;$old_die_handler; } ; </code></pre> <p>That means whenever some other module in the code wants to die, they gotta come to you (unless someone else does a destructive overwrite on <code>$SIG{__DIE__}</code>). And you can be notified that somebody things something is an error. </p> <p>Of course, for enough things you can just use an <code>END { }</code> block, if all you want to do is clean up. </p> <h3><code>overload::constant</code></h3> <p>You can inspect literals of a certain type in packages that include your module. For example, if you use this in your <code>import</code> sub:</p> <pre><code>overload::constant integer =&gt; sub { my $lit = shift; return $lit &gt; 2_000_000_000 ? Math::BigInt-&gt;new( $lit ) : $lit }; </code></pre> <p>it will mean that every integer greater than 2 billion in the calling packages will get changed to a <code>Math::BigInt</code> object. (See <a href="http://search.cpan.org/perldoc?overload#Overloading%5Fconstants" rel="nofollow">overload::constant</a>).</p> <h3>Grouped Integer Literals</h3> <p>While we're at it. Perl allows you to break up large numbers into groups of three digits and still get a parsable integer out of it. Note <code>2_000_000_000</code> above for 2 billion. </p> http://stackoverflow.com/questions/1308152/how-can-i-canonicalize-windows-file-paths-in-perl/1308328#1308328 3 Answer by Axeman for How can I canonicalize Windows file paths in Perl? Axeman 2009-08-20T19:27:54Z 2009-08-20T20:16:34Z <p>It doesn't work, because perl doesn't handle two <code>-e</code> flags--without a semicolon "between" the two commands. You have to write it as below (if you lose the d-quote right after 'perl', that is.) </p> <pre><code>perl -p -i.orig -e "s#\\#\\\\#g;" -e "s#/#\\\\#g" %VIDEOLOG_PROPERTIES_FILE% </code></pre> <p>I do something similar, but because Perl supports <code>'/'</code> on the PC, my preference is for forward slashes. So I use the following : </p> <pre><code>s![\\/]+!/!g; </code></pre> <p>Thus it can be easily turned around to </p> <pre><code>s![\\/]+!\\\\!g; </code></pre> <p>Now a word about why I do that: sometimes people can't figure out whether or not they should put a slash on the beginning or end of parts of paths that will be concatenated. At times you end up with even double forward slashes. (But not if you use <a href="http://search.cpan.org/perldoc?File::Spec" rel="nofollow">File::Spec</a>.) thus it's good to handle those kinds of collisions. Especially because it's going to be a path, we want to take however many slashes of whatever kind and turn them into the kind we like. </p> <p>Additionally, I even do this: </p> <pre><code>s!([\\/]+([.][\\/]+)?)+!/!g </code></pre> <p>Because it captures those cases where it's the same cluster of slashes separated by a dot which does nothing, because path-wise <code>/</code> &lt;=> <code>(/+.)+</code> for those programs and scripts that handle the dots in path names, while the other programs will error out.</p> http://stackoverflow.com/questions/1759991/regular-expressions-performance-boost-vs-perl/1760043#1760043 Comment by Axeman on Regular expressions performance: Boost vs. Perl Axeman 2009-11-19T04:42:51Z 2009-11-19T04:42:51Z That link is mainly about how basic regular expressions that act as a true FSA have a known performance and that newer features add complexity which can degrade performance. I have used those findings to write more determinant REs using Perl syntax. http://stackoverflow.com/questions/1703046/object-oriented-perl-constructor-syntax Comment by Axeman on Object-Oriented Perl constructor syntax Axeman 2009-11-09T19:12:03Z 2009-11-09T19:12:03Z That's basic Perl to turn a list into a hash. It alternates, taking the first one as the key and the second one as the value. DWIM (do what I mean) is a goal that Perl strives at--and usually hits. http://stackoverflow.com/questions/1672782/fastest-way-to-find-mismatch-positions-between-two-strings-of-the-same-length Comment by Axeman on Fastest Way To Find Mismatch Positions Between Two Strings of the Same Length Axeman 2009-11-04T14:34:15Z 2009-11-04T14:34:15Z @Kinopiko: They look like genes, so they could be HUGE(!!). http://stackoverflow.com/questions/1671281/how-can-i-convert-the-stringified-version-of-array-reference-to-actual-array-refe Comment by Axeman on How can I convert the stringified version of array reference to actual array reference in Perl? Axeman 2009-11-04T08:12:03Z 2009-11-04T08:12:03Z Don't see how that requires any magic beyond <code>Dumper( $b )</code>. Obviously you want to <code>warn</code>. When do you want to <code>warn</code>? In most places where I can stringify <code>$a</code>, I also have <code>$a</code> to dump. http://stackoverflow.com/questions/1671281/how-can-i-convert-the-stringified-version-of-array-reference-to-actual-array-refe/1671495#1671495 Comment by Axeman on How can I convert the stringified version of array reference to actual array reference in Perl? Axeman 2009-11-04T05:16:53Z 2009-11-04T05:16:53Z Well, if you're willing to increment the reference count, it <i>might</i> be okay--assuming that it still exists when you get the AV. http://stackoverflow.com/questions/1664677/perl-define-variables-in-script/1664779#1664779 Comment by Axeman on Perl: define variables in script Axeman 2009-11-03T05:22:18Z 2009-11-03T05:22:18Z Wow, if that's the answer, then this guy did NO research. http://stackoverflow.com/questions/1598053/how-can-i-remove-external-links-from-html-using-perl/1598085#1598085 Comment by Axeman on How can I remove external links from HTML using Perl? Axeman 2009-10-21T20:01:35Z 2009-10-21T20:01:35Z Doesn't handle bare links--I know, bare links are gross, and you'll never find them in HTML I write or write a generator for, but they and single-quoted attributes fit the spec. http://stackoverflow.com/questions/1598053/how-can-i-remove-external-links-from-html-using-perl/1598069#1598069 Comment by Axeman on How can I remove external links from HTML using Perl? Axeman 2009-10-21T19:59:34Z 2009-10-21T19:59:34Z @hobbs: add your objection as an answer--clearly explain that it is an objection, and it won't work as a comment--you'll get at least one upvote from me, and hopefully if you explain it clearly enough, nobody will downvote you. http://stackoverflow.com/questions/1602870/how-do-i-store-a-2d-array-in-a-hash-in-perl/1602951#1602951 Comment by Axeman on How do I store a 2d array in a hash in Perl? Axeman 2009-10-21T19:24:17Z 2009-10-21T19:24:17Z +1 good future suggestion. http://stackoverflow.com/questions/1598053/how-can-i-remove-external-links-from-html-using-perl/1598399#1598399 Comment by Axeman on How can I remove external links from HTML using Perl? Axeman 2009-10-21T18:09:37Z 2009-10-21T18:09:37Z @Manni: Agree--and I knew that it did that, but I didn't want to write a complicated pipe when I was altering the tag--but it makes a better solution, if I'm not writing out anything. I'm going to change it. http://stackoverflow.com/questions/1598053/how-can-i-remove-external-links-from-html-using-perl/1598399#1598399 Comment by Axeman on How can I remove external links from HTML using Perl? Axeman 2009-10-21T04:36:38Z 2009-10-21T04:36:38Z @Sinan &#220;n&#252;r: normally I remove debugging code from my finished answers. That's where Smart::Comments shines though, is debugging code. http://stackoverflow.com/questions/1596658/how-can-i-sum-each-column-of-my-data-in-perl/1596712#1596712 Comment by Axeman on How can I sum each column of my data in Perl? Axeman 2009-10-20T22:30:19Z 2009-10-20T22:30:19Z @Sinan &#220;n&#252;r: Got it to work. I'm thinking that it probably runs quicker with the in-place increment. http://stackoverflow.com/questions/1596214/how-can-i-index-a-bunch-of-files-in-perl Comment by Axeman on How can I index a bunch of files in Perl? Axeman 2009-10-20T20:25:44Z 2009-10-20T20:25:44Z This is a complex task, because it's even tougher than HTML documents and key words, because it's with code. You could get false positives if something was left in the comments that no longer applies. And depending on discipline with object names you can match strings of data that do not apply as well. I think you need to start thinking about limiting cases, to start. http://stackoverflow.com/questions/1596658/how-can-i-sum-each-column-of-my-data-in-perl/1596712#1596712 Comment by Axeman on How can I sum each column of my data in Perl? Axeman 2009-10-20T19:56:51Z 2009-10-20T19:56:51Z I wanted to to make it a self-modifying void call to pairwise: <code>pairwise { $a += $b } @totals, ...</code> but it won't let me. http://stackoverflow.com/questions/1596658/how-can-i-sum-each-column-of-my-data-in-perl Comment by Axeman on How can I sum each column of my data in Perl? Axeman 2009-10-20T19:02:11Z 2009-10-20T19:02:11Z Are you saying that '==' is your column delimiter?