In Perl I can concatenate multiple strings with spaces between them as follows:
my $long_string = $one_string . " " . $another_string . " " . $yet_another_string . " " .
$and_another_string . " " $the_lastr_string
However, typing this is a bit cumbersome.
Is there a built-in that can make this task easier?
e.g. something like:
concatenate_with_spaces($one_string, $another_string, $yet_another_string, ...)
You want
join: