Beefy Boxes and Bandwidth Generously Provided by pair Networks
Problems? Is your data what you think it is?
 
PerlMonks  

Re: how many lines returned from backticks

by dws (Chancellor)
on Jun 30, 2002 at 03:56 UTC ( [id://178303]=note: print w/replies, xml ) Need Help??


in reply to how many lines returned from backticks

If the program returned 5 lines the first time, and only 2 the next, won't there be lines left over from the first time? How can I tell how many _additional_ lines I got back?

This rather depends on how you have things scoped. If the backticks are in a subroutine that gets called multiple times, each invocation of the routine will get a new array if the backticks line is coded as:   my @lines = `findgsc ...`; If you move the declaration of @lines higher in the script, and then do   @lines = `findgsc ...`; multiple times, each one overwrites @lines with new values. To get a delta on line count (i.e., note additional lines), merely save the prior count. Conceptually,

@lines = `finedgsc ...`; $prevLines = scalar @lines; @lines = `findgsc ...`; if ( scalar @lines > $prevLines ) { # we got more this time }
Note that scalar @lines is the absolute line count, while $#lines is the final index in the array, which will be one less than the absolute count. Which to use is a matter of style, but don't confuse the two.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others lurking in the Monastery: (4)
As of 2024-04-24 00:46 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found