in reply to Removing characters

one would think that containing characters would mean not containing simply "", so
if ($value ne "") { print "the value contains characters\n"; }
or, conversly
if ($value eq "") { print "the value contains no characters\n"; }
if that suits your fancy.

charlie schmidt