in reply to Re^2: eq statement not working
in thread eq statement not working

Here is a more Perl-ish way to write your code if you're interested:
my $y = 0; for my $arg (@_){ if ( length $arg == 1 ) { $and .= " AND j$y.LumbolValue = '$arg' " ; # Your elsifs here... } $y++; }

Replies are listed 'Best First'.
Re^4: eq statement not working
by Anonymous Monk on Apr 29, 2009 at 04:47 UTC
    I am interested - thanks for the tip!!