EchoAngel has asked for the wisdom of the Perl Monks concerning the following question:
why wont' it work? I need a way to control the digitprecision length.my $value = "0.12345687"; $digitprecision = 20; printf STDOUT ("\n%20s", $value); printf STDOUT ("\n%" . $digitprecision . "s\n" , $value);
|
|---|