Hi Christoph,
Suche das erste Leerzeichen und das letzte Leerzeichen in den Variablen und lösche es...
Du meinst ungefähr so etwas?
my $cgi->param{'name'} =~ s/ //g;
nein - nur das erste bzw. letzte:
$cgi->param{'name'} =~ s/^\s+//;
$cgi->param{'name'} =~ s/\s+$//;
Viele Grüße
Michael
--
T'Pol: I apologize if I acted inappropriately.
V'Lar: Not at all. In fact, your bluntness made me reconsider some of my positions. Much as it has now.
(sh:| fo:} ch:] rl:( br:^ n4:( ie:% mo:) va:| de:/ zu:| fl:( ss:) ls:~ js:|)
Auch diese Signatur wird an korrekt konfigurierte Browser gzip-komprimiert übertragen.
T'Pol: I apologize if I acted inappropriately.
V'Lar: Not at all. In fact, your bluntness made me reconsider some of my positions. Much as it has now.
(sh:| fo:} ch:] rl:( br:^ n4:( ie:% mo:) va:| de:/ zu:| fl:( ss:) ls:~ js:|)
Auch diese Signatur wird an korrekt konfigurierte Browser gzip-komprimiert übertragen.