Thread Reguläre Ausdrücke (13 answers)
Opened by tribbiani at 2006-04-26 15:40

tribbiani
 2006-04-26 15:40
#65347 #65347
User since
2006-01-27
17 Artikel
BenutzerIn
[default_avatar]
Hallo,

kann man einen regulären Ausdruck auch als Variable übergeben?

Beispiel:

use strict;
use warnings;

my $string = '48000';
my $regex = 's/...$//';

print "org string: $string\n";
$string =~ $regex;
# statt
# $string =~ s/...$//;
print "new string: $string\n";


sollte auch 48 als string liefern.

View full thread Reguläre Ausdrücke