I don't want to add the numbers, but "concatenate" them and interpret the value as a single number. For example,
$var1 = 567;
$var2 = 1111;
#trying to explain what I wanna do with java-style syntax
$var3 = parseInt($var1 CONCAT $var2);
print $var3; #5671111 and is of type integer
How can I go about this? Thanks

perldoc perlopas a generally useful read? – fennec Oct 18 '12 at 16:51