in reply to strings with multiple parameters

$strings = join '', @ARGV

See perldoc -f join.

Update:

On second read of your original question I noticed that your code snippet may not have been illustrating what you actually intended to do. Maybe you wanted to retain the strings as separate scalar units:

( $this, $that, $the, $other ) = @ARGV;

But if that's what you need, what's wrong with keeping them in the original array, or assigning them to a new array?


Dave