Join variables : join « String « Perl






Join variables

    

#!/usr/bin/perl

use warnings;

sub wrapjoin ($$$@) {
    my ($join, $left, $right, @strings) = @_;
    foreach (@strings) {
        $_ = $left. $_. $right;
    }
    return join $join, @strings;
}

print wrapjoin("\n", "[","]", "One", "Two", "Three");

   
    
    
    
  








Related examples in the same category

1.Join strings
2.Takes its input and joins it into a single string.
3.Join the mapped value
4.Join the result of the split function
5.Join with
6.Join with 'map chr'
7.Join with 'map lc'
8.Joining string with empty string