String Concatation in Perl - Perl Views : 90
Tagged in : Perl
0 0
Send mail

String Concatation in Perl


String values are concatenated using the period as an operator.

$string1 . "more text";
$string1 . " " . $string2;

By Geethalakshmi, On - 2010-09-17



    Login to add Comments .