Monks, I have a need to search and replace portions of array elements from elements of another array.

I am attempting to split both arrays and splice if there is a match. The ideal output would look like this for the first match of element of @dp2 and 4th of @stu2. I also need to keep intact any non matching elements of @stu.

103_dsu 1 35 nbu103 Disk 6 -1

@stu = (103_dsu 1 35 nbu103,104_dsu 1 35 nbu104,204_tape 1 1 ACS1,101_ +dsu 1 35 nbu101); @dp = (nbu103 Disk 6 -1,nbu104 Disk 6 -1,nbu101 Disk 6 -1); foreach $var (@stu) { foreach $var2 (@dp) { @stu2 = split(' ',$var); $s1 = $stu2[3]; @dp2 = split(' ',$var2); $s2 = @dp2[0]; if ($s1 eq $s2) { splice (@stu2,3,1,$var2); } } }

In reply to Search and Replace Elements from 1 array to another. by skp

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.