in reply to Validate before printing to logfile

lakeTrout:

If you have your checkbox values stored in an array, you could use something like:

print join(",", grep { <cond_expr> ) @ValArray));
HTH

...roboticus

Replies are listed 'Best First'.
Re^2: Validate before printing to logfile
by lakeTrout (Scribe) on Nov 28, 2007 at 23:28 UTC
    Thanks HTH,

    they are not stored in an array, but seems logical and easy to do so. I just might try that. Thank you!