Hi
I have a for loop which is reading in values of the form Letter-Letter-Number e.g. AB1, BX6, WF2 etc
So lets say my loop runs for 10 iterations, and reads in the following -
AB1
BX6
WF2
CB7
EZ6
WY2
AB1
AB1
WF2
ET9

Now as you can see from the above - I have AB1 3 times, and WF2 2 times. I'm only interested in each unique value. Therefore how would I go about storing the values above in a unique manner, such as -
AB1
BX6
WF2
CB7
EZ6
WY2
ET9

I need to store these values in some kind of array, so I can output the unque values to a file, one the for loop has completed. If I didn't need unque value, I would simply pass them to the file as the loop executes.
THanks for your help.

In reply to Storing unique values by Anonymous Monk

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.