Beefy Boxes and Bandwidth Generously Provided by pair Networks
P is for Practical
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??

In perldata, you can see : If you evaluate an array in scalar context, it returns the length of the array. (Note that this is not true of lists, which return the last value....

Your sub bad() returns the value of the last expression evaluated (see return). The last and unique expression in bad() is a list :

  • list in scalar context -- each element of this list is evaluated and the last one is returned
  • list in list context -- bad() returns the list (3 elements) then scalar counts the number of elements. List context can be forced with  () = ... (see examples).

use strict; sub good { my @a = qw/zero one two/; @a } sub bad { qw/foo bar baz/ } print scalar good(), "\t<== what I want"; print "\n"; print scalar bad(), "\t<== not"; print "\n"; print scalar ( () = bad()), "\t<== list context, then scalar()"; print "\n"; print "baz is ".bad(); print "\n"; print "1+2 = ".( () = bad()); print "\n"; __END__ Output: 3 <== what I want baz <== not 3 <== list context, then scalar() baz is baz 1+2 = 3
English is not my mother tongue.
Les tongues de ma mère sont "made in France".

In reply to Re: Trouble getting size of list returned from sub by brx
in thread Trouble getting size of list returned from sub by wanna_code_perl

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chanting in the Monastery: (6)
As of 2024-04-25 08:04 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found