http://qs321.pair.com?node_id=606615


in reply to question on strings

are you sure $var contains what you think it does?
use Data::Dumper; warn Dumper($var);
if you think stringifying $var will really help, you can do it via concatenation to an empty string ($var.'') or by interpolating it in quotes ("$var").