Perl Join Function - Perl Views : 251
Tagged in : Perl
0 0
Send mail

Perl Join Function


The join() function is used to convert the array back to a single variable. The first value in the expression represents the delimiter value or expression to use.

$bigfield = join("AND", @fields);

$bigfield = "field1ANDfield2ANDlastfield"
By Geethalakshmi, On - 2010-09-17



    Login to add Comments .