shlogg · Early preview
James Moberg @gamesover

Unlocking ColdFusion's ListGetDuplicates Power With Adobe CF2025

Adobe ColdFusion 2025's `listGetDuplicates` function accepts 4 params: list, delimiter, ignoreCase & includeEmptyFields. Defaults unclear, but values must be boolean. Porting to CF2016? Use Java's hashCode() for unique-ish signed integer.

I saw a post on Linkedin regarding the "Unlocking the Power of listGetDuplicates". I like unlocking power, so I checked it out.
The new Adobe ColdFusion 2025 listgetduplicates function accepts 4 parameters: list, delimiter, ignoreCase & includeEmptyFields.  A List string is required, and the default delimiter is a comma. I'm not sure what the other 2 parameters default to. The values must be boolean, so one could assume that it's false since they added language to describe what happens "if true". (Documentation should be explicit, and much of Adobe's documentation doesn't include the default v...