Thread Code in RegEx (Substitution) ausführen (2 answers)
Opened by pktm at 2008-04-02 05:07

Gast Gast
 2008-04-02 08:04
#107724 #107724
Code (perl): (dl )
$s =~ s/(.*[^0-9])([0-9])+([^0-9].*)/"$1 ".($2 >= 500 ? $data->{$2}->{node} : $data->{$2}->{node} . ' ' . $data->{$2}->{word} )." $3"/ge;


Option "e" Dann wird er Ersetzungsteil als Code ausgeführt und das Ergebnis in $_ als Ersetzung benutzt.

View full thread Code in RegEx (Substitution) ausführen