@arghs = ( "We see '%s' and '%s'\n", 'wowza', 'foo' ); $s = sprintf $arghs[0], @arghs[1..$#arghs]; print "$s\n"; #### We see 'wowza' and 'foo'