The snippet you posted, when run, displays Magnunm,Cobray,Ingram. Perhaps the code you posted isn't exactly the same as the code you're running.
The code you did post has several problems. I'm a little reluctant to address them since it seems like you've posted code that is different from the code you're running. Nevertheless, here are some tips:
- The first line assigns a single string, "Magnunm,Cobray,Ingram" to an array. It will be stored in $name[0].
- The second line interpolates @name into a string. There's only one element. The resulting scalar value is a string, which you assign to $name.
- Next you test to see if $name contains text that matches Cobray. It does, of course. So you end up printing the entire string.
You'll have to tell us more about what you're starting with, and and what code you're actually running so we can nudge you in the right direction.
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.