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


in reply to $1, etc. are not just strings

gam3 demonstrates a great method. ++. Perl Best Practices advocates avoiding using $1, $2, etc. whenever you possibly can, and that is a great way to do it. IMO it's sort of a "poor man's" named capture (one of the few regex features that Perl "lacks"), and you never have to refer to the numbered variables themselves except in some special cases like in the replacement clause of the substitution operator.

I am also particularly fond of a one-step syntax to get the results of a substitution on a variable without affecting the original variable. It's hard to explain but I'm sure you've either done it or wanted to do it at some point. Here's an example (which I apologize is less than ideal; I wasn't sure if any spaces would turn up in the match from the split):

use strict; use warnings; my @staff = `whoare -g somegroup`; #chomping an array chomps all the elements chomp @staff; foreach my $emp (@staff) { my @fields = split /\s{2,}/, $emp; die "error! number of fields is " . scalar @fields . "! " unless ( scalar @fields == 3 ); #dispense with the opening paren to get the group ( my $def_grp = $fields[1] ) =~ s/\s*\(\s*//; #etc. }
I think of both of those tricks as falling in the same category, though I use the first more often. It came in handy in the very first lines of a CGI script I wrote:
use strict; use warnings; # First things first. If I can't figure out who you are, you're outta + here. my $editor; if ( exists( $ENV{REMOTE_USER} ) ) { ($editor) = $ENV{REMOTE_USER} =~ m/(some regex)/i; } (defined $editor) || die "I can't determine who you are, so you can't +access this area."; #use editor later throughout the program
These examples are probably not the best but it's from code I could put my hands on in short order.

While we're on the topic, I should note that it's a very good idea to use non-capturing parentheses(?:) whenever you want or need to use parentheses but don't need to remember the stuff that matched in there.


I like computer programming because it's like Legos for the mind.

Replies are listed 'Best First'.
Re^2: $1, etc. are not just strings
by diotalevi (Canon) on Jan 18, 2007 at 04:27 UTC

    (?<taunt>My 5\.9\.5 perl has named captures. ;-\))

    ⠤⠤ ⠙⠊⠕⠞⠁⠇⠑⠧⠊

      No kidding!? I figured it would be a feature in Perl6, but I didn't know it was already out. We're on 5.8.5 at our site and when I asked for an upgrade the guy who's in charge of the sitewide perl installs said he'd prefer to wait for 5.9 to become stable. He says there is not much of a payoff to move to a higher 5.8.x release.

      This was last month...5.9 (with named captcha) isn't stable by any chance, is it?

      I like computer programming because it's like Legos for the mind.
        This was last month...5.9 (with named captcha) isn't stable by any chance, is it?
        No. 5.9.x is a development series leading up to the stable 5.10. At this point I'd be shocked if 5.10 weren't out this year, and seeing at least a release candidate this quarter seems likely to me.