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