in reply to Is there a way to display numbers with an implied decimal position?

Try this:
$foo = 123.456; $foo =~ s/\.//g; print $foo;
  • Comment on Re: Is there a way to display numbers with an implied decimal position?
  • Download Code