http://qs321.pair.com?node_id=275222


in reply to Eliminating Trailing Zeros

$n =~ s/\.0*$|0*$//;
UPDATE: fixed lack of reading requirements


-pete
"Worry is like a rocking chair. It gives you something to do, but it doesn't get you anywhere."

Replies are listed 'Best First'.
Re: Re: Eliminating Trailing Zeros
by Trimbach (Curate) on Jul 17, 2003 at 14:37 UTC
    $n=~s/\.|\.0+$//
    That's broken. It deletes the period but leaves in the trailing zeros. This is better, and does what's requested:
    s/\.?0*$//;

    Gary Blackburn
    Trained Killer

    A reply falls below the community's threshold of quality. You may see it by logging in.
Re: Re: Eliminating Trailing Zeros
by Anonymous Monk on Jul 17, 2003 at 14:40 UTC
    That is Perfect! Thanks!