in reply to How do I concatenate a string?

As merlyn so eloquently put it ;), use the '.' operator:
my $foo = "Foo"; my $bar = "Bar"; my $str = $foo . $bar; print $str;
Which of course will print "FooBar".

Originally posted as a Categorized Answer.