Search notes:

Perl function: join

#
#   join EXPR, LIST
#
use warnings;
use strict;

my $joined = join "\n", qw(abc def ghi jkl);

print $joined;

__END__
abc
def
ghi
jkl
Github repository about-perl, path: /functions/join.pl
the »opposite« of join is split.

See also

Visual Basic for Applications has also a function named join that does quite the same thing.
Perl functions
The R function paste to concatenate strings.
The PowerShell operators -split and -join.

Index