Re: How to concatenate strings with Perl? Yes...exactly vel!
let me post some example.... using Perl's dot operator:
$name = 'checkbook';
$filename = "/tmp/" . $name . ".tmp"; using Perl's join function
$name = "checkbook";
$filename = join "", "/tmp/", $name, ".tmp";
__________________ S.VinothkumaR
Behind me is infinite power,
Before me is Endless Possibility,
Around me is Boundless Opportunity,
Why should I fear!
|