I need to concatenate an undefined number of strings with Perl to create one larger string.
$concatenated_string = $string1 . $string2 . $string3
#..and so on for all strings provided in the file which was opened earlier in the program.
I am just a beginner, but I could not find any question on here relating to it. Any help is much appreciated.