User Chas. Owens - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T12:32:34Z http://stackoverflow.com/feeds/user/78259 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1347478/how-can-i-reverse-a-string-that-contains-combining-characters-in-perl 8 How can I reverse a string that contains combining characters in Perl? Chas. Owens 2009-08-28T14:47:36Z 2009-12-07T17:42:33Z <p>I have the the string <code>"re\x{0301}sume\x{0301}"</code> (which prints like this: re&#x0301;sume&#x0301;) and I want to reverse it to <code>"e\x{0301}muse\x{0301}r"</code> (e&#x0301;muse&#x0301;r). I can't use Perl's <a href="http://perldoc.perl.org/functions/reverse.html" rel="nofollow"><code>reverse</code></a> because it treats combining characters like <code>"\x{0301}"</code> as separate characters, so I wind up getting <code>"\x{0301}emus\x{0301}er"</code> ( &#x0301;emus&#x0301;er). How can I reverse the string, but still respect the combining characters?</p> http://stackoverflow.com/questions/1833554/how-does-the-qr-string-operator-in-perl-decide-whether-or-not-to-compile-string 9 How does the qr/STRING/ operator in Perl decide whether or not to compile STRING? Chas. Owens 2009-12-02T15:17:38Z 2009-12-02T19:55:30Z <p>The <a href="http://perldoc.perl.org/perlop.html#qr%2fSTRING%2fmsixpo" rel="nofollow">docs</a> for <code>qr/STRING/</code> say:</p> <blockquote> <p>This operator quotes (and possibly compiles) its <code>STRING</code> as a regular expression.</p> </blockquote> <p>What worries me is the part in parentheses. I can't think of any cases where I don't want it to compile a regex out of <code>STRING</code>. Is this parenthetical statement just weasel words to cover some future case where compiling is not desired or is there a case today (or in an earlier version of Perl) where <code>STRING</code> will not be compiled?</p> http://stackoverflow.com/questions/773340/can-you-provide-an-example-of-parsing-html-with-your-favorite-parser 20 Can you provide an example of parsing HTML with your favorite parser? Chas. Owens 2009-04-21T15:55:37Z 2009-11-24T13:23:11Z <p>This question is a lazy way of collecting examples of parsing HTML with a variety of languages and parsing libraries. Individual comments will be linked to in answers to questions about how to parse HTML with regexes as a way of showing the right way to do things (similar to how I use <a href="http://stackoverflow.com/questions/701166">Can you provide some examples of why it is hard to parse XML and HTML with a regex?</a>).</p> <p>For the sake of consistency, I ask that the example be parsing an HTML file for the <code>href</code> in anchor tags. To make it easy to search this question, I ask that you follow this format</p> <p>language: <br /> library: </p> <pre><code>&lt;example code&gt; </code></pre> <p>Please make the library a link to the documentation for the library. If you want to provide an example other than extracting links, please include a </p> <p>purpose: </p> <p>after the "library:".</p> <p>Note, the tags have been changed to draw in other languages. Here is a history of the tags this post has had: c#, perl, python, ruby, vb.net, and parsing.</p> http://stackoverflow.com/questions/1674302/how-do-i-make-os-x-10-6-compile-jsonxs-as-32-bit-instead-of-64-bit 1 How do I make OS X 10.6 compile JSON::XS as 32-bit instead of 64-bit? Chas. Owens 2009-11-04T14:55:07Z 2009-11-08T18:53:00Z <p>I compiled Perl 5.10.1 under OS X 10.5. It was compiled as a 32-bit program. I have since upgraded to OS X 10.6. My version of Perl 5.10.1 continues to work fine, but I just tried to compile JSON::XS and got errors like the following:</p> <blockquote> <p><code>Can't load '/Users/cowens/.cpan/build/JSON-XS-2.26-clO6XX/blib/arch/auto/JSON/XS/XS.bundle' for module JSON::XS: dlopen(/Users/cowens/.cpan/build/JSON-XS-2.26-clO6XX/blib/arch/auto/JSON/XS/XS.bundle, 2): no suitable image found. Did find: /Users/cowens/.cpan/build/JSON-XS-2.26-clO6XX/blib/arch/auto/JSON/XS/XS.bundle: mach-o, but wrong architecture at /Users/cowens/local/lib/perl5/5.10.1/darwin-thread-multi-2level/DynaLoader.pm line 204.</code></p> </blockquote> <p>A quick look at <code>/Users/cowens/.cpan/build/JSON-XS-2.26-clO6XX/blib/arch/auto/JSON/XS/XS.bundle</code> shows that it is indeed a 64-bit library:</p> <blockquote> <p>/Users/cowens/.cpan/build/JSON-XS-2.26-clO6XX/blib/arch/auto/JSON/XS/XS.bundle: Mach-O 64-bit bundle x86_64</p> </blockquote> <p>Since this is most likely the culprit, I want to try compiling the module as 32-bit. I assume there is some environment variable (like <code>CCFLAGS</code>) I can set to force it to compile as a 32-bit library instead of a 64-bit library. </p> <p>The alternative seems to be to recompile Perl and all of my modules (something I am not sure I want to do).</p> http://stackoverflow.com/questions/1682332/how-does-perl-decide-which-order-to-evaluate-terms-in-an-expression 4 How does Perl decide which order to evaluate terms in an expression? Chas. Owens 2009-11-05T17:46:04Z 2009-11-06T18:39:57Z <p>Given the code:</p> <pre><code>my $x = 1; $x = $x * 5 * ($x += 5); </code></pre> <p>I would expect <code>$x</code> to be <code>180</code>:</p> <pre><code>$x = $x * 5 * ($x += 5); #$x = 1 $x = $x * 5 * 6; #$x = 6 $x = 30 * 6; $x = 180; 180; </code></pre> <p>But instead it is <code>30</code>; however, if I change the ordering of the terms:</p> <pre><code>$x = ($x += 5) * $x * 5; </code></pre> <p>I do get <code>180</code>. The reason I am confused is that <a href="http://perldoc.perl.org/perlop.html" rel="nofollow"><code>perldoc perlop</code></a> says very plainly:</p> <blockquote> <p>A TERM has the highest precedence in Perl. They include variables, quote and quote-like operators, <strong>any expression in parentheses</strong>, and any function whose arguments are parenthesized.</p> </blockquote> <p>Since <code>($x += 5)</code> is in parentheses, it should be a term, and therefore executed first, regardless of the ordering of the expression.</p> http://stackoverflow.com/questions/1682332/how-does-perl-decide-which-order-to-evaluate-terms-in-an-expression/1682333#1682333 15 Answer by Chas. Owens for How does Perl decide which order to evaluate terms in an expression? Chas. Owens 2009-11-05T17:46:14Z 2009-11-05T17:46:14Z <p>The act of typing out the question yielded the answer to me: terms have the highest precedence. That means that the <code>$x</code> in the first chunk of code is evaluated and yields <code>1</code>, then <code>5</code> is evaluated and yields <code>5</code>, then <code>($x += 5)</code> is evaluate and yields <code>6</code> (with a side-effect of setting <code>$x</code> to <code>6</code>):</p> <pre><code>$x = $x * 5 * ($x += 5); address of $x = $x * 5 * ($x += 5); #evaluate $x as an lvalue address of $x = 1 * 5 * ($x += 5); #evaluate $x as an rvalue address of $x = 1 * 5 * ($x += 5); #evaluate 5 address of $x = 1 * 5 * 6; #evaluate ($x += 5), $x is now 6 address of $x = 1 * 5 * 6; #evaluate 1 * 5 address of $x = 5 * 6; #evaluate 1 * 5 address of $x = 30; #evaluate 5 * 6 30; #evaluate address of $x = 30 </code></pre> <p>Similarly, the second example reduces like this:</p> <pre><code>$x = ($x += 5) * $x * 5; address of $x = ($x += 5) * $x * 5; #evaluate $x as an lvalue address of $x = 6 * $x * 5; #evaluate ($x += 5), $x is now 6 address of $x = 6 * 6 * 5; #evaluate $x as an rvalue address of $x = 6 * 6 * 5; #evaluate 5 address of $x = 36 * 5; #evaluate 6 * 6 address of $x = 180; #evaluate 36 * 5 180; #evaluate $x = 180 </code></pre> http://stackoverflow.com/questions/968036/what-are-the-popular-contemporary-uses-for-perl/971234#971234 5 Answer by Chas. Owens for What are the popular, contemporary uses for Perl? Chas. Owens 2009-06-09T16:47:51Z 2009-11-05T12:35:16Z <p>I currently am using Perl to write an automated testing suite for my company's web sites (using <a href="http://search.cpan.org/dist/WWW-Mechanize/lib/WWW/Mechanize.pm" rel="nofollow"><code>WWW::Mechanize</code></a> and <a href="http://search.cpan.org/dist/Test-WWW-Selenium/lib/WWW/Selenium.pm" rel="nofollow"><code>WWW::Selenium</code></a>). One of my co-workers is doing the same for other types of servers. We also use it for our monitoring software (<a href="http://www.nagios.org/" rel="nofollow">Nagios</a>). And I use <code>perl</code> daily as a commandline tool to aid in basic sysadminy tasks.</p> http://stackoverflow.com/questions/769550/why-is-my-cat-function-with-system-calls-slower-compared-to-linuxs-cat/769801#769801 10 Answer by Chas. Owens for Why is my "cat" function with system calls slower compared to Linux's "cat"? Chas. Owens 2009-04-20T19:38:33Z 2009-10-24T06:18:18Z <p>Ah, based on your edit you were being bitten by the readahead buffer. You cannot test two programs that read files side by side by running them once. The first always be slower since the file is on disk, once the file is in memory the second will run faster, you must either create new data for each or run one and then run both so they both get the benefit of the readahead buffer.</p> http://stackoverflow.com/questions/1565402/fast-algorithm-to-check-membership-of-a-pair-of-numbers-in-large-x-y-coordinate/1565521#1565521 7 Answer by Chas. Owens for Fast algorithm to check membership of a pair of numbers in large (x,y) coordinates in Perl Chas. Owens 2009-10-14T10:41:14Z 2009-10-14T11:01:52Z <p>In addition to Udi Pasmon's good advice, you could also convert your large file to a <a href="http://en.wikipedia.org/wiki/Dbm" rel="nofollow">DBM</a> and then <a href="http://perldoc.perl.org/functions/tie.html" rel="nofollow">tie</a> the <a href="http://perldoc.perl.org/DB%5FFile.html" rel="nofollow">DBM file to a hash</a> for easy look ups.</p> <p>Convert the file:</p> <pre><code>#!/usr/bin/perl use strict; use warnings; use DB_File; my $dbfile = "coords.db"; tie my %coords, "DB_File", $dbfile or die "could not open $dbfile: $!"; while (&lt;&gt;) { my ($x, $y) = split; $coords{"$x-$y"} = 1; } </code></pre> <p>Check to see if arguments are members of the file:</p> <pre><code>#!/usr/bin/perl use strict; use warnings; use DB_file; my ($x, $y) = @ARGV; tie my %coords, "DB_File", "coords.db" or die "could not open coords.db: $!"; print "IN\n" if $coords{"$x-$y"}; </code></pre> http://stackoverflow.com/questions/1559967/how-can-i-sync-two-directories-with-perl/1560056#1560056 2 Answer by Chas. Owens for How can I sync two directories with Perl? Chas. Owens 2009-10-13T12:55:38Z 2009-10-13T13:24:21Z <p>You need to use <code>File::Find</code> to create a hash of files to move. Only put the path to a file in the hash if the file is newer than the path already stored in the hash. Here is a simple implementation. Note, there may be problems on the windows platform, I am not used to using <code>File::Spec</code> to work with files and pathes in a cross platform manner.</p> <pre><code>#!/usr/bin/perl use warnings; use strict; use File::Find; use File::Spec; my %copy; my @sources = qw{ /Users/cowens/foo/Lib /Users/cowens/bar/Lib /Users/cowens/baz/Lib }; find sub { my ($volume, $dir, $file) = File::Spec-&gt;splitpath($File::Find::name); my @dirs = File::Spec-&gt;splitdir($dir); my @base = ($volume); #the base directory of the file for my $dir (@dirs) { last if $dir eq 'Lib'; push @base, $dir; } #the part that is common among the various bases my @rest = @dirs[$#base .. $#dirs]; my $base = File::Spec-&gt;catdir(@base); my $rest = File::Spec-&gt;catfile(@rest, $file); #if we don't have this file yet, or if the file is newer than the one #we have if (not exists $copy{$rest} or (stat $File::Find::name)[9] &gt; $copy{$rest}{mtime}) { $copy{$rest} = { mtime =&gt; (stat _)[9], base =&gt; $base }; } }, @sources; print "copy\n"; for my $rest (sort keys %copy) { print "\t$rest from $copy{$rest}{base}\n"; } </code></pre> http://stackoverflow.com/questions/678393/why-do-you-not-use-cpan-modules 13 Why do you not use CPAN modules? Chas. Owens 2009-03-24T17:24:31Z 2009-09-30T14:55:56Z <p>ETA: When I ask "Why do you not use CPAN modules?", I am referring to the people who refuse to use <strong>any</strong> CPAN modules (including high quality ones like <a href="http://search.cpan.org/dist/DBI/DBI.pm" rel="nofollow">DBI</a>). Not all CPAN code is of high quality, and it is fine to stay away from modules that are trivial or are based on experimental code (I got annoyed at a developer the other day for wanting to bring in <a href="http://search.cpan.org/dist/Time-Format/lib/Time/Format.pm" rel="nofollow">Time::Format</a> just because he didn't know that strftime was in <a href="http://perldoc.perl.org/POSIX.html" rel="nofollow">POSIX</a>).</p> <p>Recently on <a href="http://www.nntp.perl.org/group/perl.beginners/" rel="nofollow">Perl Beginners</a>, someone want to know how to do something without resorting to the Perl module commonly suggested for that function. He or she did not want to install the module from CPAN. This made me think about the reasons I have seen people avoid using CPAN and I came up with five reasons for this behaviour and the solution for each one:</p> <ol> <li>they scare you (answer, get over it)</li> <li>they scare your sysadmins (answer, work around them by installing in your home directory and use the lib pragma)</li> <li>you are using a hosting service that prevents you from installing modules (answer, get a better service, there are cheap services that don't behave like morons)</li> <li>the target machine doesn't necessarily have the needed module (answer, use PAR or PAR::Packer)</li> <li>the target machine is totally locked down (i.e. you login to rbash and have to provide code to a third party for inclusion on the box) (a combination of 4 and going through the bureaucracy)</li> <li>You are using an embedded version of Perl that can't load modules (no answer, you are stuck, but this is very rare) </li> </ol> <p>So, if you don't use CPAN, why, and why are the answers above not adequate? Note, I am not asking why you don't install directly from CPAN on production boxen, I am asking why you avoid using the modules from CPAN (installing via packaging systems count as using CPAN to me). </p> http://stackoverflow.com/questions/1475357/how-do-i-find-a-users-home-directory-in-perl/1475396#1475396 -1 Answer by Chas. Owens for How do I find a user's home directory in Perl? Chas. Owens 2009-09-25T04:13:58Z 2009-09-25T04:29:55Z <p>The home directory for a user is stored in <code>/etc/passwd</code>. The best way to get at the information is the <a href="http://perldoc.perl.org/functions/getpwuid.html" rel="nofollow"><code>getpw*</code> functions</a>:</p> <pre><code>#!/usr/bin/perl use strict; use warnings; print "uid:", (getpwuid 501)[7], "\n", "name:", (getpwnam "cowens")[7], "\n"; </code></pre> <p>To address your specific problem, try this code:</p> <pre><code>if ( -e (getpwuid $&gt;)[7] . "/foo.txt" ) { print "yes ,it exists!"; } </code></pre> http://stackoverflow.com/questions/1460173/whats-wrong-with-my-merge-sort-implementation-in-perl/1460237#1460237 4 Answer by Chas. Owens for What's wrong with my merge sort implementation in Perl? Chas. Owens 2009-09-22T13:51:00Z 2009-09-22T14:19:46Z <p>Why are you not using the <a href="http://perldoc.perl.org/functions/sort.html" rel="nofollow"><code>sort</code></a> function?</p> <pre><code>my @sorted = sort { $a-&gt;{modified} &lt;=&gt; $b-&gt;{modified} } @unsorted; </code></pre> <p>Just for the record, here is an inefficient implementation of merge sort in Perl:</p> <pre><code>#!/usr/bin/perl use strict; use warnings; sub merge { my ($cmp, $left, $right) = @_; my @merged; while (@$left &amp;&amp; @$right) { if ($cmp-&gt;($left-&gt;[0], $right-&gt;[0]) &lt;= 0) { push @merged, shift @$left; } else { push @merged, shift @$right; } } if (@$left) { push @merged, @$left; } else { push @merged, @$right; } return @merged; } sub merge_sort { my ($cmp, $array) = @_; return @$array if @$array &lt;= 1; my $mid = @$array/2 - 1; my @left = merge_sort($cmp, [@{$array}[0 .. $mid]]); my @right = merge_sort($cmp, [@{$array}[$mid+1 .. $#{$array}]]); if ($left[-1] &gt; $right[0]) { @left = merge $cmp, \@left, \@right; } else { push @left, @right; } return @left; } my $cmp = sub { my ($x, $y) = @_; return $x &lt;=&gt; $y; }; print join(", ", merge_sort $cmp, [qw/1 3 4 2 5 4 7 8 1/]), "\n"; </code></pre> http://stackoverflow.com/questions/1457796/is-it-okay-to-use-modules-from-within-subroutines/1457936#1457936 6 Answer by Chas. Owens for Is it okay to use modules from within subroutines? Chas. Owens 2009-09-22T03:09:59Z 2009-09-22T03:16:15Z <h1>question 1</h1> <p>It depends on what the module does. If it has lexical effects, then it will only affect the scope it is used in:</p> <pre><code>my $x; { use integer; $x = 5/2; #$x is now 2 } my $y = 5/2; #$y is now 2.5 </code></pre> <p>If it is a normal module then it makes no difference where you use it, but it is common to use all of those modules at the top of the program.</p> <h1>question 2</h1> <p>Things that can affect the speed of a program between machines</p> <ol> <li>speed of the processor</li> <li>version of modules installed (some modules have XS versions that are much faster)</li> <li>version of Perl</li> <li>number of entries in PERL5LIB</li> <li>speed of the drive</li> </ol> http://stackoverflow.com/questions/1451447/why-does-my-perl-program-complain-about-needing-explicit-package-names/1451471#1451471 13 Answer by Chas. Owens for Why does my Perl program complain about needing explicit package names? Chas. Owens 2009-09-20T17:08:57Z 2009-09-20T18:04:19Z <p><code>$predecessor_matrix</code> is a scalar and <code>%predecessor_matrix</code> is a hash. Different types in Perl (scalar, array, hash, function, and filehandle) have different entries in the symbol table, and, therefore, can have the same name.</p> <p>Also, you have a problem in your function. It expects to be able to get two hashes from @_, but a hash in list context (such as in the argument list of a function) yields a list of key value pairs. So, both <code>%predecessor_matrix</code> and <code>%shortestpath_matrix</code> will wind up in the <code>%predecessor_matrix</code> of the function. What you need to do here is to use <a href="http://perldoc.perl.org/perlreftut.html" rel="nofollow">references</a>:</p> <pre><code>package Routines; use strict; use Exporter; sub load_shortest_path_matrices { my $predecessor_matrix = shift; my $shortestpath_matrix = shift; $predecessor_matrix-&gt;{key} = "value"; ... } </code></pre> <p>and</p> <pre><code>use Routines; use strict; my %predecessor_matrix; my %shortestpath_matrix; Routines::load_shortest_path_matrices( \%predecessor_matrix, \%shortestpath_matrix ); </code></pre> <p>However, passing in structures to load as arguments is more C-like than Perl-like. Perl can return more than one value, so it is more common to see code like:</p> <pre><code>package Routines; use strict; use Exporter; sub load_shortest_path_matrices { my %predecessor_matrix; my %shortestpath_matrix; ... return \%predecessor_matrix, \%shortestpath_matrix; } </code></pre> <p>and</p> <pre><code>use Routines; use strict; my ($predecessor_matrix, $shortestpath_matrix) = Routines::load_shortest_path_matrices(); for my $key (keys %$predecessor_matrix) { print "$key =&gt; $predecessor_matrix-&gt;{$key}\n"; } </code></pre> http://stackoverflow.com/questions/1444009/how-can-i-extract-substrings-from-a-string-in-perl/1447299#1447299 1 Answer by Chas. Owens for How can I extract substrings from a string in Perl? Chas. Owens 2009-09-19T00:11:13Z 2009-09-19T00:11:13Z <p>This just requires a small change to my <a href="http://stackoverflow.com/questions/1440439/how-do-i-get-values-by-perl-string-operations/1440592#1440592">last answer</a>:</p> <pre><code>my ($guid, $scheme, $star) = $line =~ m{ The [ ] Scheme [ ] GUID: [ ] ([a-zA-Z0-9-]+) #capture the guid [ ] \( (.+) \) #capture the scheme (?: [ ] ([*]) #capture the star )? #if it exists }x; </code></pre> http://stackoverflow.com/questions/1440439/how-do-i-get-values-by-perl-string-operations/1440592#1440592 3 Answer by Chas. Owens for How do I get values by Perl string operations? Chas. Owens 2009-09-17T18:36:03Z 2009-09-18T16:55:48Z <p>This sounds like a job for a <a href="http://perldoc.perl.org/perlretut.html" rel="nofollow">regex</a> and an <a href="http://perldoc.perl.org/perldsc.html" rel="nofollow">array of hashes</a>.</p> <p>First, let's create a pattern that can find the information. You are looking for a constant string <code>"The Scheme GUID: "</code> that is followed by a contiguous string of alpha-numeric and hyphen characters followed by a space and then a contiguous string of alpha-numeric characters surrounded by parentheses. In regex, this is <code>/The Scheme GUID: [a-zA-Z0-9-]+ \([a-zA-Z0-9]+\)/</code>. Now, that will only match the string, and we want to pull out pieces of it, so we need to add captures to the regex and catch its return:</p> <pre><code>my ($guid, $scheme) = /The Scheme GUID: ([a-zA-Z0-9-]+) \(([a-zA-Z0-9]+)\)/; </code></pre> <p>The <code>()</code> are used to denote the parts we want to save from the string and are called captures.</p> <p>Now that we have the values, you want to create a record-like structure. In Perl, you commonly use a hash for this purpose:</p> <pre><code>my %record = ( guid =&gt; $guid, scheme =&gt; $scheme ); </code></pre> <p>You can now access the guid by saying <code>$record{guid}</code>. To build an array of these records, just push the record onto an array:</p> <pre><code>my @records; while (&lt;&gt;) { my ($guid, $scheme) = /The Scheme GUID: ([a-zA-Z0-9-]+) \(([a-zA-Z0-9])\)/; my %record = ( guid =&gt; $guid, scheme =&gt; $scheme ); push @records, \%record; } </code></pre> <p>You can now access the third record's scheme like this: <code>$records[2]{scheme}</code>.</p> <p>Your last requirement requires a change to the regex. You need to look for that star and do somehthing special if you see it. Unfortunately star means something to regexes, so you will need to escape it like you did with parentheses. And the star is not always present, so you will need to use non-grouping parentheses <code>(?:)</code> and the <code>?</code> quantifier to tell the regex that not matching that part of the string is okay:</p> <pre><code>my ($guid, $scheme, $star) = /The Scheme GUID: ([a-zA-Z0-9-]+) \(([a-zA-Z0-9]+)\)(?: (\*))?/; </code></pre> <p>The regex has gotten very long and hard to read at this point, so it is probably a good idea to use the <code>/x</code> flag and add some whitespace and comments to the regex:</p> <pre><code>my ($guid, $scheme, $star) = m{ The [ ] Scheme [ ] GUID: ([a-zA-Z0-9-]+) #capture the guid [ ] \( ([a-zA-Z0-9]+) \) #capture the scheme (?: [ ] (\*) #capture the star if it exists )? }x; </code></pre> <p>They way I would write a program like this is:</p> <pre><code>#!/usr/bin/perl use strict; use warnings; my $primary_record; my @records; while (&lt;DATA&gt;) { next unless my ($guid, $scheme, $star) = m{ The [ ] Scheme [ ] GUID: [ ] ([a-zA-Z0-9-]+) #capture the guid [ ] \( ([a-zA-Z0-9]+) \) #capture the scheme (?: [ ] ([*]) #capture the star if it exists )? }x; my %record = ( guid =&gt; $guid, scheme =&gt; $scheme, starred =&gt; defined $star ? 1 : 0 ); if ($record{starred}) { $primary_record = \%record; } push @records, \%record; } print "records:\n"; for my $record (@records) { print "\tguid: $record-&gt;{guid} scheme: $record-&gt;{scheme}\n"; } print "primary record is $primary_record-&gt;{guid}\n"; __DATA__ The Scheme GUID: 123-abc (Scheme1) * The Scheme GUID: 456-def (Scheme2) The Scheme GUID: 789-ghi (Scheme3) </code></pre> <p>If you have the data in an array, for you can replace the <code>while</code> loop with a <code>for</code> loop:</p> <pre><code>for my $line (@lines) { next unless my ($guid, $scheme, $star) = $line =~ m{ The [ ] Scheme [ ] GUID: [ ] ([a-zA-Z0-9-]+) #capture the guid [ ] \( ([a-zA-Z0-9]+) \) #capture the scheme (?: [ ] ([*]) #capture the star if it exists )? }x; </code></pre> <p>The <code>next unless match</code> idiom says that to get a different line if this one doesn't match the regex. The <code>m{regex}</code> is the generalized form of <code>/regex/</code>. I tend to use the generalized form when I stretch a regex across multiple lines because it makes matching the beginning and ending of the regex easier in my editor.</p> http://stackoverflow.com/questions/1440499/is-it-faster-to-give-perls-print-a-list-or-a-concatenated-string/1440882#1440882 0 Answer by Chas. Owens for Is it faster to give Perl's print a list or a concatenated string? Chas. Owens 2009-09-17T19:30:04Z 2009-09-17T19:30:04Z <p>Of the three options, I would probably choose string interpolation first and switch to commas for expressions that cannot be interpolated. This, humorously enough, means that my default choice is the slowest of the bunch, but given that they are all so close to each other in speed and that disk speed is probably going to be slower than anything else, I don't believe changing the method has any real performance benefits.</p> <p>As others have said, write the code, then profile the code, then examine the algorithms and data structures you have chosen that are in the slow parts of the code, and, finally, look at the implementation of the algorithms and data structures. Anything else is foolish micro-optimizing that wastes more time than it saves.</p> <p>You may also want to read <a href="http://perldoc.perl.org/perlperf.html" rel="nofollow"><code>perldoc perlperf</code></a> </p> <pre> Rate string concat comma string 803887/s -- -0% -7% concat 803888/s 0% -- -7% comma 865570/s 8% 8% -- </pre> <pre><code>#!/usr/bin/perl use strict; use warnings; use Carp; use List::Util qw/first/; use Benchmark; sub benchmark { my $subs = shift; my ($k, $sub) = each %$subs; my $value = $sub-&gt;(); croak "bad" if first { $value ne $_-&gt;() and print "$value\n", $_-&gt;(), "\n" } values %$subs; Benchmark::cmpthese -1, $subs; } sub fake_print { #this is, plus writing output to the screen is what print does no warnings; my $output = join $,, @_; return $output; } my ($x, $y) = ("a", "b"); benchmark { comma =&gt; sub { return fake_print $x, "|", $y, "\n" }, concat =&gt; sub { return fake_print $x . "|" . $y . "\n" }, string =&gt; sub { return fake_print "$x|$y\n" }, }; </code></pre> http://stackoverflow.com/questions/1421811/how-do-i-represent-a-unicode-character-in-a-literal-string-iso-ansi-c-when-the-ch 0 How do I represent a Unicode character in a literal string ISO/ANSI C when the character set is ASCII? Chas. Owens 2009-09-14T14:12:51Z 2009-09-14T15:57:17Z <p>In Perl, I can say</p> <pre><code>my $s = "r\x{e9}sum\x{e9}"; </code></pre> <p>to assign <code>"résumé"</code> to <code>$s</code>. I want to do something similar in C. Specifically, I want to say</p> <pre><code>sometype_that_can_hold_utf8 c = get_utf8_char(); if (c &lt; '\x{e9}') { /* do something */ } </code></pre> http://stackoverflow.com/questions/1404515/gvim-and-multiple-programming-languages/1405318#1405318 4 Answer by Chas. Owens for GVIM and multiple programming languages Chas. Owens 2009-09-10T13:29:18Z 2009-09-10T13:29:18Z <p>In addition to rangerchris's answer, you might consider using modelines. Modelines tell the editor how to configure itself:</p> <pre><code>#!/usr/bin/perl # vi: ts=4 sw=4 ht=4 et textwidth=76 : use strict; use warnings; print "hello world\n"; </code></pre> <p>That modeline tells vi to use 4 character tabs and autoindents, to use spaces instead of tabs, and that it should insert a newline when the cursor gets to 76 characters.</p> <p>You can control how Vim reads modelines with two variables (most likely set in your .vimrc):</p> <pre><code>set modeline set modelines=5 </code></pre> <p>The <code>modeline</code> variable tells Vim to look for modelines if it is set. The <code>modelines</code> variable tells Vim how many lines from the top and bottom to scan looking for the modeline (in this case it will find the modeline if it is in the first or last five lines of the file).</p> <p>Like any system that takes instructions from untrusted sources, modelines can be a <a href="https://bugzilla.redhat.com/show%5Fbug.cgi?id=238734" rel="nofollow">security threat</a>, so the <code>root</code> user should never use modelines and you should keep your copy of Vim up-to-date.</p> <p>The real benefit to modelines is that they are per file. Most Perl people are four spaces as indent people, but I am an eight character tab person. When working with other people's code, I use a modeline that reflects their usage. The rest of the time I use my own. </p> http://stackoverflow.com/questions/1395018/why-do-i-get-an-error-when-i-try-to-use-the-reptition-assignment-operator-with-an 6 Why do I get an error when I try to use the reptition assignment operator with an array? Chas. Owens 2009-09-08T16:44:40Z 2009-09-09T01:14:16Z <pre><code>#!/usr/bin/perl use strict; use warnings; my @a = qw/a b c/; (@a) x= 3; print join(", ", @a), "\n"; </code></pre> <p>I would expect the code above to print <code>"a, b, c, a, b, c, a, b, c\n"</code>, but instead it dies with the message:</p> <pre><code>Can't modify private array in repeat (x) at z.pl line 7, near "3;" </code></pre> <p>This seems odd because the <code>X &lt;op&gt;= Y</code> are documented as being equivalent to <code>X = X &lt;op&gt; Y</code>, and the following code works as I expect it to:</p> <pre><code>#!/usr/bin/perl use strict; use warnings; my @a = qw/a b c/; (@a) = (@a) x 3; print join(", ", @a), "\n"; </code></pre> <p>Is this a bug in Perl or am I misunderstanding what should happen here?</p> http://stackoverflow.com/questions/1393873/how-can-i-match-a-word-that-isnt-certain-words/1394448#1394448 6 Answer by Chas. Owens for How can I match a word that isn't certain words? Chas. Owens 2009-09-08T14:49:44Z 2009-09-08T14:49:44Z <p>It is generally faster to say:</p> <pre><code>my %exclude = map { $_ =&gt; 1 } qw/int long/; my @words = grep { not exists $exclude{$_} } /(?:\b|^) (\w+) (?:\b|$)/gx; </code></pre> <p>especially on versions of Perl prior to 5.10 (when alternation got a massive speed increase).</p> http://stackoverflow.com/questions/1392005/how-can-i-get-dynamically-web-content-using-perl/1392047#1392047 3 Answer by Chas. Owens for How can I get dynamically web content using Perl? Chas. Owens 2009-09-08T04:56:15Z 2009-09-08T05:04:06Z <p>Take a look at <a href="http://seleniumhq.org/" rel="nofollow">Selenium RC</a> and the <a href="http://search.cpan.org/dist/Test-WWW-Selenium/lib/WWW/Selenium.pm" rel="nofollow"><code>WWW::Selenium</code></a> module in Perl. With them you can control a real web browser.</p> <p>Another option is <a href="http://search.cpan.org/dist/WWW-HtmlUnit/lib/WWW/HtmlUnit.pm" rel="nofollow"><code>WWW::HtmlUnit</code></a> which uses the HtmlUnit Java library to execute the JavaScript without a web browser. <code>WWW::HtmlUnit</code> uses <a href="http://search.cpan.org/dist/Inline-Java/Java.pod" rel="nofollow">Inline::Java</a> to give Perl access to the library. I have found that when installing, it is best to say No to the question "Do you wish to build the JNI extension?".</p> http://stackoverflow.com/questions/1391015/perl-write-speed-mystery/1391569#1391569 3 Answer by Chas. Owens for Perl: write speed mystery? Chas. Owens 2009-09-08T01:43:12Z 2009-09-08T01:54:09Z <p>I am with everyone else who is saying that the problem is buffers filling and then emptying. Try turning on <a href="http://perldoc.perl.org/IO/Handle.html" rel="nofollow">autoflush</a> to avoid having a buffer (in Perl):</p> <pre><code>#!/usr/bin/perl use strict; use warnings; use IO::Handle; my $filename = "output.txt"; open my $numbers_outfile, "&gt;", $filename or die "could not open $filename: $!"; $numbers_outfile-&gt;autoflush(1); #each time through the loop should be 1 gig for (1 .. 20) { #each time though the loop should be 1 meg for (1 .. 1024) { #print 1 meg of Zs print {$numbers_outfile} "Z" x (1024*1024) } } </code></pre> <p>Buffers can be good if you are going to print a little, do so work, print a litte, do some work, etc. But if you are just going to be blasting data onto disk, they can cause odd behavior. You may also need to disable any write caching your filesystem is doing.</p> http://stackoverflow.com/questions/1387693/what-should-the-operators-be-called 1 What should the ... operators be called? Chas. Owens 2009-09-07T05:35:53Z 2009-09-07T18:53:33Z <p>The <a href="http://perldoc.perl.org/perlop.html#Range-Operators" rel="nofollow"><code>...</code> operators</a> are identical to the range operator (<code>..</code>) in list context and nearly identical to the flip-flop operator (<code>..</code>) in scalar context, but calling them the range operator and the flip-flop operator seems wrong since those names are more commonly associated with <code>..</code>, which has slightly different behavior (in scalar context at least).</p> <p>For now, I am calling them the alternate range/flip-flop operator.</p> http://stackoverflow.com/questions/1382567/what-are-the-basic-knowledge-requirement-for-a-perl-developer/1382582#1382582 9 Answer by Chas. Owens for What are the basic knowledge requirement for a Perl developer? Chas. Owens 2009-09-05T05:52:43Z 2009-09-06T14:55:35Z <p>Things I look for when hiring a Perl developer:</p> <ol> <li>competence with respect to Perl's syntax (knows what the control structures are)</li> <li>competence with respect to variables (knows what the variable types are and how they can be used to build complex data structures)</li> <li>knowledge of what strict is and why it should be used</li> <li>basic understanding of context (void, scalar, and list)</li> <li>basic understanding of regexes </li> <li>understanding of what CPAN is </li> <li>basic understanding of how modules work</li> </ol> http://stackoverflow.com/questions/1383845/whats-the-minimal-set-of-characters-i-need-to-filter-before-passing-a-string-to/1383864#1383864 5 Answer by Chas. Owens for What's the minimal set of characters I need to filter before passing a string to a system call? Chas. Owens 2009-09-05T17:40:50Z 2009-09-05T17:48:18Z <p>First, given that you are concerned with security, I suggest you look into <a href="http://perldoc.perl.org/perlsec.html#Taint-mode" rel="nofollow">taint mode</a>. As for the minimal set of characters to allow to be visible to shell, you are better off not letting any characters be seen by the shell:</p> <pre><code>my $output = do { local $/; open my $pipe, "-|", "/path/to/some/command", $user_supplied_string or die "could not run /path/to/some/command: $!"; &lt;$pipe&gt;; }; </code></pre> http://stackoverflow.com/questions/1380516/how-can-i-use-perls-system-call-to-spawn-independent-threads/1381104#1381104 3 Answer by Chas. Owens for How can I use Perl's system call to spawn independent threads? Chas. Owens 2009-09-04T19:26:05Z 2009-09-04T19:32:44Z <p>You can <a href="http://perldoc.perl.org/functions/fork.html" rel="nofollow"><code>fork</code></a> off processes to run the commands for you. If you do, you will probably want to use <a href="http://perldoc.perl.org/functions/exec.html" rel="nofollow"><code>exec</code></a> instead of <a href="http://perldoc.perl.org/functions/system.html" rel="nofollow"><code>system</code></a>:</p> <pre><code>#!/usr/bin/perl use strict; use warnings; die "could not fork: $!" unless defined (my $first_pid = fork); #first child exec $^X, "1.pl" unless $first_pid; die "could not fork: $!" unless defined (my $second_pid = fork); #second child exec $^X, "2.pl" unless $second_pid; waitpid $first_pid, 0; #wait for first child to finish waitpid $second_pid, 0; #wait for second child to finish </code></pre> <p>See also: <a href="http://perldoc.perl.org/perlvar.html#%24%5eX" rel="nofollow"><code>$^X</code></a> and <a href="http://perldoc.perl.org/functions/waitpid.html" rel="nofollow"><code>waitpid</code></a></p> http://stackoverflow.com/questions/1378764/how-can-we-catch-side-comments-using-perltidy-or-perlcritic/1379468#1379468 14 Answer by Chas. Owens for How can we catch side comments using Perl::Tidy or Perl::Critic? Chas. Owens 2009-09-04T14:01:21Z 2009-09-04T16:09:04Z <p>I think this should work for you (if I understood what you want):</p> <pre><code>package Perl::Critic::Policy::CodeLayout::NoSideComments; use strict; use warnings; use Readonly; use Perl::Critic::Utils qw{ :severities :classification :ppi }; use parent 'Perl::Critic::Policy'; our $VERSION = 20090904; Readonly::Scalar my $DESC =&gt; "side comments are not allowed"; Readonly::Scalar my $EXPL =&gt; "put the comment above the line, not next to it"; sub supported_parameters { return } sub default_severity { return 5 } sub default_themes { return qw( custom ) } sub applies_to { return 'PPI::Token::Comment' } sub violates { my ($self, $elem) = @_; #look backwards until you find whitespace that contains a #newline (good) or something other than whitespace (error) my $prev = $elem-&gt;previous_sibling; while ($prev) { return $self-&gt;violation( $DESC, $EXPL, $elem ) unless $prev-&gt;isa("PPI::Token::Whitespace"); return if $prev-&gt;content =~ /\n/; $prev = $prev-&gt;previous_sibling; } #catch # after a block start, but leave the #! line alone return $self-&gt;violation( $DESC, $EXPL, $elem ) unless $elem-&gt;parent-&gt;isa("PPI::Document"); return; } 1; </code></pre> http://stackoverflow.com/questions/1379705/in-perl-how-can-i-handle-continuation-lines-in-a-configuration-file/1379775#1379775 5 Answer by Chas. Owens for In Perl, how can I handle continuation lines in a configuration file? Chas. Owens 2009-09-04T14:54:25Z 2009-09-04T14:59:37Z <p>I have no idea what you are seeing, but that is not valid Perl code and that is not a behavior in Perl. Here is some Perl code that does what you want:</p> <pre><code>#!/usr/bin/perl use strict; use warnings; while (my $line = &lt;DATA&gt;) { #collapse lines that end with \ while ($line =~ s/\\\n//) { $line .= &lt;DATA&gt;; } print $line; } __DATA__ foo=bar x=this\ is\ a\ multiline statement. </code></pre> <p>Note: If you are typing the file in on the commandline like this:</p> <pre><code>perl -ple 1 &lt;&lt;! foo\ bar baz ! </code></pre> <p>Then you are seeing the effect of your shell, not Perl. Consider the following counterexample:</p> <pre><code>printf 'foo\\\nbar\nbaz\n' | perl -ple 1 </code></pre> http://stackoverflow.com/questions/1056228/what-is-the-best-way-to-create-a-class-attribute-in-moose/1056256#1056256 Comment by Chas. Owens on What is the best way to create a class attribute in Moose? Chas. Owens 2009-12-10T15:17:58Z 2009-12-10T15:17:58Z @Robert P Probably, I was just starting to use MooseX::Declare when I wrote this. http://stackoverflow.com/questions/1833554/how-does-the-qr-string-operator-in-perl-decide-whether-or-not-to-compile-string/1833896#1833896 Comment by Chas. Owens on How does the qr/STRING/ operator in Perl decide whether or not to compile STRING? Chas. Owens 2009-12-02T16:56:35Z 2009-12-02T16:56:35Z @John Siracusa There does seem to be a cache though, examine this code: <a href="http://gist.github.com/247337" rel="nofollow">gist.github.com/247337</a> If it recompiled every time, then runtime of <code>diff</code> and <code>same</code> would be the same, but <code>same</code> is about three times faster. I think the time difference you are seeing is the time it takes to create the <code>$vowel</code> variable and assign the cached, compiled regex to it. http://stackoverflow.com/questions/1833554/how-does-the-qr-string-operator-in-perl-decide-whether-or-not-to-compile-string/1833896#1833896 Comment by Chas. Owens on How does the qr/STRING/ operator in Perl decide whether or not to compile STRING? Chas. Owens 2009-12-02T16:46:00Z 2009-12-02T16:46:00Z What does that have to do with the section I quoted? The fact that Perl is caching the compile doesn't mean <code>$vowel</code> won't be handed a quoted and compiled version of <code>STRING</code>. The phrase I am asking about seems to say it is possible for <code>qr/STRING/</code> to return a quoted, but not compiled, version of <code>STRING</code>. I am asking if there is any case currently or in the past where <code>qr/STRING/</code> does not return a compiled regex. If there is no case where it does, then I should probably submit a patch to clarify that statement. http://stackoverflow.com/questions/1833554/how-does-the-qr-string-operator-in-perl-decide-whether-or-not-to-compile-string/1833800#1833800 Comment by Chas. Owens on How does the qr/STRING/ operator in Perl decide whether or not to compile STRING? Chas. Owens 2009-12-02T16:14:02Z 2009-12-02T16:14:02Z If this is what it means then it is phrased very badly. http://stackoverflow.com/questions/1682332/how-does-perl-decide-which-order-to-evaluate-terms-in-an-expression Comment by Chas. Owens on How does Perl decide which order to evaluate terms in an expression? Chas. Owens 2009-11-06T20:39:03Z 2009-11-06T20:39:03Z @David Thornley It isn't a matter of doing it. It is a matter of understanding it. I am writing an article that involves precedence and associativity of operators and I don't want to state anything that is false. This means I need to understand what Perl does much better than is normally necessary; hence the bad, but legal, code as I look for inconsistencies in my understanding. http://stackoverflow.com/questions/1682332/how-does-perl-decide-which-order-to-evaluate-terms-in-an-expression Comment by Chas. Owens on How does Perl decide which order to evaluate terms in an expression? Chas. Owens 2009-11-05T18:12:11Z 2009-11-05T18:12:11Z I too came from ANSI C, and yeah, this isn't code I would write, it is me trying to make sure I understand precedence in Perl before I explain it to someone else. Using side-effects like this is a major no-no, but still legal in Perl. In ANSI C, if you had more than one side-effect in an expression the results were undefined, in Perl side-effects are better defined, but still a really bad idea. http://stackoverflow.com/questions/1674302/how-do-i-make-os-x-10-6-compile-jsonxs-as-32-bit-instead-of-64-bit Comment by Chas. Owens on How do I make OS X 10.6 compile JSON::XS as 32-bit instead of 64-bit? Chas. Owens 2009-11-04T16:10:46Z 2009-11-04T16:10:46Z Hmm, an upgraded version of GCC could be the problem, but the fact that it is producing a 64-bit version of the library is definitely a problem (32-bit programs can't load 64-bit libraries). http://stackoverflow.com/questions/1565402/fast-algorithm-to-check-membership-of-a-pair-of-numbers-in-large-x-y-coordinate/1565521#1565521 Comment by Chas. Owens on Fast algorithm to check membership of a pair of numbers in large (x,y) coordinates in Perl Chas. Owens 2009-10-14T12:07:22Z 2009-10-14T12:07:22Z Just make sure you don't use the <code>keys</code> function on the tied hash (you will get back every key in the database). If you want to iterate over the entries you will need to use <code>each</code> instead. http://stackoverflow.com/questions/1565402/fast-algorithm-to-check-membership-of-a-pair-of-numbers-in-large-x-y-coordinate/1565521#1565521 Comment by Chas. Owens on Fast algorithm to check membership of a pair of numbers in large (x,y) coordinates in Perl Chas. Owens 2009-10-14T12:05:24Z 2009-10-14T12:05:24Z Yes, the DBM is stored on disk, not in memory. Converting the file will take a long time, but once it is converted look ups will be very fast (it uses a disk based hash table by default). http://stackoverflow.com/questions/1518923/how-can-i-create-a-tcp-server-daemon-process-in-perl Comment by Chas. Owens on How can I create a TCP server daemon process in Perl? Chas. Owens 2009-10-05T12:41:13Z 2009-10-05T12:41:13Z duplicate of <a href="http://stackoverflow.com/questions/766397" rel="nofollow">stackoverflow.com/questions/766397</a> http://stackoverflow.com/questions/1475357/how-do-i-find-a-users-home-directory-in-perl/1475391#1475391 Comment by Chas. Owens on How do I find a user's home directory in Perl? Chas. Owens 2009-09-25T04:25:43Z 2009-09-25T04:25:43Z He posted a link to it, which is morally (if not legally) the same to me. http://stackoverflow.com/questions/1475357/how-do-i-find-a-users-home-directory-in-perl/1475391#1475391 Comment by Chas. Owens on How do I find a user's home directory in Perl? Chas. Owens 2009-09-25T04:15:33Z 2009-09-25T04:15:33Z That is almost certainly a pirated copy of the book, please don't post author's work without their permission. http://stackoverflow.com/questions/1460173/whats-wrong-with-my-merge-sort-implementation-in-perl/1460237#1460237 Comment by Chas. Owens on What's wrong with my merge sort implementation in Perl? Chas. Owens 2009-09-22T21:49:14Z 2009-09-22T21:49:14Z Yeah, but the only reason to do that is if you know in advance that the data is likely to be pathological for quicksort. There are valid reasons to use a custom built version of mergesort (e.g. low memory systems that need to use files instead of memory). Of course, there are modules in CPAN that already do most of the heavy lifting for you. http://stackoverflow.com/questions/1460173/whats-wrong-with-my-merge-sort-implementation-in-perl Comment by Chas. Owens on What's wrong with my merge sort implementation in Perl? Chas. Owens 2009-09-22T13:46:33Z 2009-09-22T13:46:33Z Providing the data you are using might help. http://stackoverflow.com/questions/1451085/how-can-i-define-constants-in-a-separate-file-in-perl/1451420#1451420 Comment by Chas. Owens on How can I define constants in a separate file in Perl? Chas. Owens 2009-09-20T17:20:35Z 2009-09-20T17:20:35Z Readonly::Scalar is pretty fast as well if you have Readonly::XS installed. Hashes and Arrays are still slower though.