I don't understand where you are trying to insert because of the text says one thing, and your comment in your code says something else.:

but the results that I am getting is that the valuse are added to the right block, but at the end of the list of vertex, instead of into the right position and the rest shifted.

Do you have warnings enabled (either using -w or use warnings; )? It might be that $it2 + 1 is equal to the length of the array or more than that. If it is offset more than the length of the array, perl will issue a warning and then splices at the end of the array. e.g.,

use Data::Dumper; use warnings; use strict; my @foo = ( 0,1,2,3,4,5 ); splice (@foo,78,0,(7,8)); print Dumper \@foo;

-enlil


In reply to Re: inserting a list into an array by Enlil
in thread inserting a list into an array by stu96art

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



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.