On Wednesday, August 13, 2003, at 12:24 PM, Kenneth Graves wrote:
This should work:
if (length($value) == 0)
I'd prefer
if ($value eq '')
Also, you should change
split /\t/, $expression;
to
split /\t/, $expression, -1;
if you want to include trailing empty fields in your count.
_______________________________________________ Boston-pm mailing list [EMAIL PROTECTED] http://mail.pm.org/mailman/listinfo/boston-pm

