"John W. Krahn" wrote:
> 
> Fuzzy wrote:
> >
> > in php i would use
> > $outout = sprintf("%s,%s,%s,\"%s\"", $date, $time, $file, $title);
> 
> It is exactly the same in perl.  Or you could write it like this:
> 
> $outout = sprintf '%s,%s,%s,"%s"', $date, $time, $file, $title;
> 
> Or like this:
> 
> $outout = join ',', $date, $time, $file, qq("$title");
> 
> TMTOWTDI   :-)

Or even just:

$outout = qq($date,$time,$file,"$title");


John
-- 
use Perl;
program
fulfillment

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to