How would you sort an array of string by length in ColdFusion?
In PHP, one can use usort as demonstrated here: PHP: Sort an array by the length of its values?
|
How would you sort an array of string by length in ColdFusion? In PHP, one can use |
||||
|
|
|
I guess this is not going to be most flexible or even effective solution, but I was interested in the shortest version which uses built-in CFML sorting... Without comments it's just 13 lines of code :)
Result is |
|||
|
According to Ben Nadel, CF10 supports something similar:
However, it is not documented in CF10 ArraySort Doc |
|||
|
|
|
You can use a quick sort algorithm along with your own custom comparator, similar to how Java's comparators work. You can find a quickSort UDF here: http://cflib.org/udf/quickSort. You'll need to define your own comparator to tell the function how it should do the sorting. Below is a working example. Note that you'll need in include the UDF in your page so that the quickSort function is available.
|
|||
|
|
|
In CF10 you can indeed use a closure with ArraySort(). eg1. sort by length alone.
data == eg2. sort by length and alphabetically when same length.
data == eg3. same, only reverse the order.
data == |
|||
|
|
|
In Coldfusion 10 or Railo 4, you can use the Underscore.cfc library to write this in an elegant and simple way:
The iterator function is called for each value in the array, and that value is passed in as the first argument. The function should return the value that you wish to sort on. In this case, we return len(string). _.sortBy always sorts in ascending order. (Disclaimer: I wrote Underscore.cfc) |
|||||||||
|