in reply to Re: Problem with interpolating backslash
in thread Problem with interpolating backslash

"Please do not use prototypes if you don't know why they are problematic."

Also ;-), please do not use prototypes if you know why they are problematic. It is generally a bad idea to use Perl prototype.

  • Comment on Re^2: Problem with interpolating backslash

Replies are listed 'Best First'.
Re^3: Problem with interpolating backslash
by ivanatora (Sexton) on Aug 20, 2005 at 17:27 UTC
    I solved the problem :)
    Instead  my $str = "@_"; I used  my $str = $_[0]; which is the same as shift.
    Interesting ideas, I'll meditate on them :)