So I won't talk about the pattern part.
The match operator is called with the m/OHAI/ pattern, or just /OHAI/ . if you don't specify something to match against, perl will use our good friend $_ , so when you iterate through a file, you are probably ok with this convention:
my $yay;
while(<>){
$yay = $_ if /say/ ;
}
print $yay;
Sometimes we don't want to match against $_, and we'd like to parse another var. That's ok, we use the =~ operator, which tells 'm' the variable to do the match with. But there is where I get somewhat puzzled sometimes, because if I want to assign the match to a var, you have to chain it
$match = $string =~ /yay/;
And that doesn't do what we usually want.
I've written this little test script to help me remember how to do proper matchings, and get the info I want from them.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/perl | |
use warnings; | |
use strict; | |
use Data::Dumper; | |
my $l; | |
open my $fh, '<', shift || $0; | |
while(<$fh>){ | |
$l = $_ if /say/; | |
}; | |
print "$l\n"; | |
my %h; | |
$h{goatse}=()= $l =~ /( )/g; #4. force list context and then, scalar context | |
($h{match}) = $l =~ /( )/g; #' '.list context but only assigning the first result | |
(@{$h{array}}) = $l =~ /( )/g; #[' ',' ',' ',' ']. list context | |
@{$h{array2}} = $l =~ /( )/g;#[' ',' ',' ',' ']. list context | |
$h{bool} = $l =~ /( )/g; #1. true / false | |
print Dumper \%h; |
No hay comentarios:
Publicar un comentario