in reply to Help with @LoL
You are interpolating an array into a string; when you do this, you get a string with the elements of the array separated by the value of the $" variable, by default a single space.
e.g. -
Hope this helps!
Will yield: This is an interpolated array: foo bar bazmy @array = qw(foo bar baz); my $string = "@array"; print "This is an interpolated array: $string";
Hope this helps!
In Section
Seekers of Perl Wisdom