I have three arrays such as below. What I want to do is if the element inside the arrays match, then it will do something. How do I correct this code?
@input_array = N1 N2 N3 N6 N7
@input_A = N1 N3 N11 N11 N10 N16
@input_B = N3 N6 N2 N7 N16 N19
if (grep { @input_B eq $_ } @input_array)
{
if (grep { @input_A eq $_ } @input_array)
{
foreach my $inputKey (@input_array)
{
@{$primaryCC0{$inputKey}} = (1,1); # each key of the hash
+has an array with 2 values
}
foreach my $key (sort keys %primaryCC0) # to display value CC0
+ and CC1
{
my ($CC0, $CC1) = @{$primaryCC0{$key}};
print "CC0[$key] = $CC0\n";
print "CC1[$key] = $CC1\n\n";
}
}
else
{print "only 1 input is PI";}
}
else
{print "this is a wire\n\n";}
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: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.