Thread Frage zum "g" Modifizierer bei Substitutionen (5 answers)
Opened by Mikmak at 2008-03-22 17:12

Linuxer
 2008-03-22 17:55
#107371 #107371
User since
2006-01-27
3890 Artikel
HausmeisterIn

user image
Meinst Du sowas?

Code (perl): (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/perl
# vi: set ts=4 sw=4 sts=2 et:
use strict;
use warnings;


my $text = q~a b c d a b c d~;

$text =~ s/([ab])/&show_what($1)/ge;

print $text, $/;

sub show_what {
    my $match = shift;

    print "matched: $match", $/;
    return $match x 2;
}

__END__
meine Beiträge: I.d.R. alle Angaben ohne Gewähr und auf Linux abgestimmt!
Die Sprache heisst Perl, nicht PERL. - Bitte Crossposts als solche kenntlich machen!

View full thread Frage zum "g" Modifizierer bei Substitutionen