in reply to Re: Loosing Negative Values in Array Ref
in thread Loosing Negative Values in Array Ref

Thats true, how to keep the same logic and still check having these negative values in the array?
  • Comment on Re^2: Loosing Negative Values in Array Ref

Replies are listed 'Best First'.
Re^3: Loosing Negative Values in Array Ref
by Marshall (Canon) on Jun 03, 2009 at 23:16 UTC
    Aside from the numeric vs string issue. Numeric "zero" is greater than "-5"! So maybe what you need here is to use absolute vale abs() when comparing things so that abs(-5) is > 0.?