Concatenation of strings here means, merging two or more variables holding string type data into one variable side by side.
#!/usr/bin/perl print "content-type:text/html\n\n"; $str1="Hello"; $str2="World"; $str=$str1." ".$str2; print $str;
Output: ------- Hello World
AllBlogToolsFacebook comments for blogger brought to you by AllBlogTools.com , Get Yours?