Thread Reguläre Ausdrücke aus Datenbank holen (4 answers)
Opened by dominicn at 2011-11-16 11:40

pq
 2011-11-16 11:51
#154235 #154235
User since
2003-08-04
12208 Artikel
Admin1
[Homepage]
user image
wie soll das gehen und was ist der unterschied zu vorher?
funktioniert doch alles:

Code: (dl )
1
2
3
4
5
6
7
8
9
10
$ perl -wE'
my $regex = q{Haus \d};
my $string = "Haus 42";
say "Regex: $regex";
if ($string =~ m/$regex/) {
say "match";
}
'
Regex: Haus \d
match
Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live. -- Damian Conway in "Perl Best Practices"
lesen: Wiki:Wie frage ich & perlintro Wiki:brian's Leitfaden für jedes Perl-Problem

View full thread Reguläre Ausdrücke aus Datenbank holen