in reply to The most TIMTOWTDI thing you can do

Similar to option 5 of yours, I tried:
#!/usr/bin/perl -w use strict; my $a = "Foo"; my $bar = "bar"; $a =~ s/(.*)/$1$bar/; print $a;

There's always:
1) Create insert sql statements 2) Insert into a table 3) select col1+col2 from table 4) fetchrow 5) print

:)

_14k4 - perlmonks@poorheart.com (www.poorheart.com)