The backslash before the @ tells Perl to treat it literally, otherwise it will treat it as an array. If the @ is followed by an $ it will be treated as an array reference (a string holding a reference to an array). If you print it out it may be clearer (I have changed your code to use qq||):
my $string = 'i-am-a-string';
print qq| "blah\@$string;blah" |; # with backslash
# "blah@i-am-a-string;blah"
print qq| "blah@$string;blah" |; # no backslash
# Can't use string ("i-am-a-string") as an ARRAY ref
$string = [1,2,3]; # string now an array reference
print qq| "blah\@$string;blah" |; # with backslash
# "blah@ARRAY(0x803bc0);blah" # ARRAY(0x803bc0) is where (1,2,3) lives
print qq| "blah@$string;blah" |; # no backslash
# "blah1 2 3;blah"
qq["blah\@$string;blah"]to avoid the need to escape the double-quotes at the beginning. In Perl, qq[] is the same as "" and you can choose the delimiters you prefer: qq[], qq(), qq{}, qq//, qq^^, qq!!, qq||, etc. – zostay Feb 5 '12 at 21:08