Thread hilfe bei regex
(6 answers)
Opened by Froschpopo at 2005-11-09 14:37
Das s/// hätte dir eh nichts gebracht. So wie du es geschrieben hast, wäre $status 1. s/// liefert true zurück, nicht $1, $2 etc.
perl -Mstrict -Mwarnings -e 'package blub; sub new { bless {} } sub bar {my $self=shift; $self->{bla}="5065726c2d436f6d6d756e697479"; return $self->{bla};} my $foo=blub->new();print "Hallo ";print pack("H*",$foo->bar()); print "\n"'
http://perl-tutor.de |