Thread Regex auf ein Array (8 answers)
Opened by xGhost at 2008-08-05 17:10

GwenDragon
 2008-08-05 17:52
#113116 #113116
User since
2005-01-17
14747 Artikel
Admin1
[Homepage]
user image
Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/perl

use strict;
use warnings;

my %r = (
q/^abc\d{4}/ => q/#ANFANG#/,
q/[a-z]{2,3}[!#]/ => q/#SPEC#/
);
my $string = 'abc4444 Perl ist! eine ganz! besondere Sprache, mit# PCRE und RegExes';
map { $string=~s/$_/$r{$_}/eg; } keys %r;
print $string;
1;

View full thread Regex auf ein Array