Thread Regex: Match: Variable für $* setzen (3 answers)
Opened by supersucker at 2007-01-24 10:56

renee
 2007-01-24 11:01
#73549 #73549
User since
2003-08-04
14371 Artikel
ModeratorIn
[Homepage] [default_avatar]
So würde es gehen:
Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/perl

use strict;
use warnings;

my $regex = qr/(foo)(bar)(foo)/;
my $hit = 2; # geht natürlich nicht

# mehr Code
my $bla = "foobarfoo";

if($bla =~ m/$regex/){
no strict 'refs';
print ${$hit};
}


Oder ohne mit strict in Konflikt zu geraten:
Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/perl

use strict;
use warnings;

my $regex = qr/(foo)(bar)(foo)/;
my $hit = 2; # geht natürlich nicht

# mehr Code
my $bla = "foobarfoo";

if(my @array = $bla =~ m/$regex/){
print $array[$hit-1];
}
OTRS-Erweiterungen (http://feature-addons.de/)
Frankfurt Perlmongers (http://frankfurt.pm/)
--

Unterlagen OTRS-Workshop 2012: http://otrs.perl-services.de/workshop.html
Perl-Entwicklung: http://perl-services.de/

View full thread Regex: Match: Variable für $* setzen