I have a function that receives a string of tags. In order to save the tags individually, the function transforms the string into an array:
this.tags = listToArray(this.tags, ", ");
How do I remove duplicate values in the event that there are any?
|
I have a function that receives a string of tags. In order to save the tags individually, the function transforms the string into an array:
How do I remove duplicate values in the event that there are any? |
|||||
|
|
An easy way to remove duplicates from a list is to convert the list to a struct first, and then conver the struct to an array. However if the order of items in the list is important this may not be appropriate as the elements in the struct will be sorted. If the order of items is important you would need to build the array manually rather than using the listToArray feature.
|
|||
|
|
|
I like to use Java for this kind of task:
Only problem is it takes case into account, so thinks "apples" & "APPLES" are different things (which technically yes, depending on your system may well be different). Way round that is to lower case everything in the list first. |
|||||||||||
|
|
based on idea of Jason Haritou, but you can do it in pure CF using Struct! (keys matching will be case-insensitive)
However, for small lists, I prefer Antony's solution. |
|||||
|
|
I just had to de-dup a very large list (5k+entries) and found a much faster way than using a loop. I feel the need to share.
I wrote this into a function for easy use:
I bench-marked it against a few other methods and here are the results in milliseconds: |
|||||||
|
|
Just put the array into a Struct and then copy it back to an array ;) http://www.bennadel.com/blog/432-Using-ColdFusion-Structures-To-Remove-Duplicate-List-Values.htm |
|||
|
|
|
In Coldfusion 10 or Railo 4, you could use Underscore.cfc's uniq() function:
One advantage of Note: I wrote Underscore.cfc |
|||
|
|
|
There are a couple of UDF's on CFLib that do this, ArrayyDiff (http://www.cflib.org/udf/arrayDiff) and ArrayCompare (http://www.cflib.org/udf/arrayCompare). hth, larry |
|||
|
|