From: Robert Citek <[EMAIL PROTECTED]>
> Hello all,
>
> I want to format a number so that it has commas as a separator.
> Here's the code I came up with:
>
> my $num=12345678;
> print scalar reverse( join(",", grep( /./ ,split
> (/(...)/,reverse($num), "\n";
>
> This works but was wondering
Robert Citek wrote at Thu, 03 Jul 2003 18:48:02 -0500:
> I want to format a number so that it has commas as a separator. Here's the
> code I came up with:
>
> my $num=12345678;
> print scalar reverse( join(",", grep( /./ ,split
> (/(...)/,reverse($num), "\n";
>
> This works but was wonderin
It was Thursday, July 03, 2003 when Robert Citek took the soap box, saying:
:
: Hello all,
:
: I want to format a number so that it has commas as a separator. Here's the
: code I came up with:
:
: my $num=12345678;
: print scalar reverse( join(",", grep( /./ ,split
: (/(...)/,reverse($num),