Beefy Boxes and Bandwidth Generously Provided by pair Networks
good chemistry is complicated,
and a little bit messy -LW
 
PerlMonks  

Re: Calculating/adding byte counts of array elements

by choroba (Cardinal)
on Aug 06, 2013 at 21:43 UTC ( [id://1048195]=note: print w/replies, xml ) Need Help??


in reply to Calculating/adding byte counts of array elements

You are changing the array and using the changed value to count the number. Do not store the output in the array you are using to count the length:
#!/usr/bin/perl use warnings; use strict; my @array = ('Hello, my name is John', 'How are you?', 'blah (blah)', ); my $count = 0; for my $string (@array) { printf "%08d %s\n", $count, $string; $count += length $string; }
لսႽ† ᥲᥒ⚪⟊Ⴙᘓᖇ Ꮅᘓᖇ⎱ Ⴙᥲ𝇋ƙᘓᖇ

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others imbibing at the Monastery: (6)
As of 2024-04-23 14:13 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found