in reply to Re: I could not use more than one IF ($_ = / /) condition for a single line
in thread I could not use more than one IF ($_ = / /) condition for a single line

Now it's working... I used binding operator =~ instead of =. Thanks for your help guys
  • Comment on Re^2: I could not use more than one IF ($_ = / /) condition for a single line

Replies are listed 'Best First'.
Re^3: I could not use more than one IF ($_ = / /) condition for a single line
by spx2 (Deacon) on Jul 01, 2009 at 17:09 UTC
    you might want to look at the given/when block introduced in Perl 5.10 , it is very well suited for parsing , I like it more than the if blocks :)