Beefy Boxes and Bandwidth Generously Provided by pair Networks
Keep It Simple, Stupid
 
PerlMonks  

Re^3: sprintf not acting like I expect

by SuicideJunkie (Vicar)
on Dec 03, 2014 at 20:25 UTC ( [id://1109162]=note: print w/replies, xml ) Need Help??


in reply to Re^2: sprintf not acting like I expect
in thread sprintf not acting like I expect

From that, I can see that you have 5 characters (incl. space) between each number. The problem is only that you're not putting the proper amount of space before the first number of each row.

The chop and push and loop is odd. I suspect you're doing a lot of string analysis in the middle, instead of pre-calculating the important values. I'd suggest a simple:

my $itemLength = length($iterations); #account for comma and 1 space extra, but at least 1 number per row! my $NumPerRow = int(80/($itemLength+2)) || 1; my $format = "%0${itemLength}d, "; while (@primeNumbers) { printf($format, shift @primeNumbers) for (1..$NumPerRow); print "\n"; }

There is no need to build up a big string of all the results. IO is buffered by default so many separate prints will be efficient.

Replies are listed 'Best First'.
Re^4: sprintf not acting like I expect
by GotToBTru (Prior) on Dec 03, 2014 at 22:34 UTC

    Glad I waited until you posted first! But here is my contribution, non-destructive of the array. Replace the while{} with the following:

    OUTER: for (my $r = 0; $r < @primeNumbers; $r += $NumPerRow) { for (my $c = r; $c - $r < $NumPerRow; $c++) { printf $format, $primeNumbers[$c]; last OUTER if ($c == $#primeNumbers); } print "\n"; }
    1 Peter 4:10

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1109162]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others pondering the Monastery: (4)
As of 2024-04-23 22:47 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found