In article <[EMAIL PROTECTED]>, 
[EMAIL PROTECTED] (Wagner Garcia Campagner) wrote:

> Is there a way for me to format $var to became 34,56 instead of 34.56 ???

change the decimal point to a comma.

    $var =~ s/\./,/;
-- 
brian d foy <[EMAIL PROTECTED]> - Perl services for hire
CGI Meta FAQ - http://www.perl.org/CGI_MetaFAQ.html
Troubleshooting CGI scripts - http://www.perl.org/troubleshooting_CGI.html

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

Reply via email to