Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
You probably mean undefined elements, NULL is a c-thing. One way to create an array with undefined elements is to use indexes and then skip a few. With grep -ing for defined elements, you can weed the undefined elements, as shown in the example below.

As mentioned, an empty array is not the same as an undefined array, and "0" is defined, so you don't want to skip it.

#!/usr/bin/perl my (@ar1, @ar2); $ar1[0] = 1; $ar1[1] = 0; # a defined element, not NULL $ar1[7] = 9; # skip, leaving 2..6 undefined # dump array 1 print("\@ar1:\n"); for my $i (0..$#ar1) { print(" $i : $ar1[$i]\n"); } # weed the undefined elements @ar2 = grep { defined $_ } @ar1; print("\@ar2:\n"); for my $i (0..$#ar2) { print(" $i : $ar2[$i]\n"); }

In reply to Re: any built in function to take out null arrays elements? by lyklev
in thread any built in function to take out null arrays elements? by adrive

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 taking refuge in the Monastery: (5)
As of 2024-04-18 07:46 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found