in reply to Dividing and format
And the output is exactly as required -#!/usr/local/bin/perl -w use strict; my $xx = 12000/1000; # wanted result is 12.0 my $yy = 12678/1000; # wanted result is 12.7 - rounded up print "\$xx = ", rounding_with_regex($xx), "\n"; print "\$yy = ", rounding_with_regex($yy), "\n"; sub rounding_with_regex { my $num = shift; $num += 0.05; # want to round up (as number) $num =~ s/\.(\d).*/.$1/; # perform the rounding (as string) return $num; }
$xx = 12.0 $yy = 12.7
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Dividing and format with regular expression the perl way
by Anonymous Monk on Nov 27, 2003 at 20:35 UTC | |
by Roger (Parson) on Nov 27, 2003 at 20:42 UTC | |
by ysth (Canon) on Nov 27, 2003 at 20:39 UTC |