cfdocs

listDeleteAt

Deletes an element from a list. Returns a copy of the list, without the specified element.

listDeleteAt(list, position [, delimiters])
returns string

Argument Reference

Name Type Required Default Description
list string Yes    
position numeric Yes    
delimiters string No ,  

Simple Example

Deletes 2nd item from the list

listDeleteAt("foo,bar,lorem,ipsum", 2)

Expected Result: foo,lorem,ipsum

Example with Custom Delimiter

Deletes 2nd item from the list using a custom delimiter

listDeleteAt("foo,bar|lorem,ipsum|me|something", 2, "|")

Expected Result: foo,bar|me|something