in reply to
question on strings
are you sure
$var
contains what you think it does?
use Data::Dumper; warn Dumper($var);
[download]
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"
).
Comment on
Re: question on strings
Select
or
Download
Code
In Section
Seekers of Perl Wisdom