Ask a Question related to PERL Beginners, Design and Development.

  1. #1

    Default checking duplicates

    Hi all, i'm trying to figure out how I can check for duplicates entries in
    an array and remove the duplicate.

    Example:
    23,23,39,40,44,44
    should result in:
    23,39,40,44

    I'm reading from a file and assigning it to an array.

    Silver Fox
    Silverfox Guest

  2. Similar Questions and Discussions

    1. recordset duplicates
      I have a query that brings back the same records more than once depending on how many entry's are in the table based on a non-unique ID. This is...
    2. Finding duplicates
      Hi, didn't think that this could be so tricky. ;) I have a table: ID, Cycle, Name, Institution, Phone, Fax There are entries that have...
    3. SQL Duplicates
      Hi all, I'm facing the next problem: I've got a table like this: Name Size Total Martens 200 2 Martens 300 ...
    4. counting duplicates
      Jane, SELECT field1,count(field1) 'Counter' FROM <tgablename> GROUP BY field1 -- Dinesh. SQL Server FAQ at http://www.tkdinesh.com
    5. No Duplicates
      Is there a way so you make filemaker not accept any duplicate enteries into a certian fields ie; UserName: <field> Is there a way to make it...
  3. #2

    Default RE: checking duplicates

    SilverFox <underground_miller@hotmail.com> wrote:
    :
    : Hi all, i'm trying to figure out how I can check
    : for duplicates entries in an array and remove
    : the duplicate.

    Read perlfaq4:

    How can I remove duplicate elements from a list or array?

    HTH,

    Charles K. Clarkson
    --
    Head Bottle Washer,
    Clarkson Energy Homes, Inc.
    Mobile Home Specialists
    254 968-8328

    Charles K. Clarkson Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139