Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <cfset selectedFruit = "">
  2. <cfloop list="#form.fieldnames#" index="i">
  3.     <cfif findNoCase("fruit", i) NEQ 0>
  4.         <cfset selectedFruit = listAppend(selectedFruit, replaceNoCase(i, "fruit", "", "all"))>
  5.     </cfif>
  6. </cfloop>
  7.  
  8. <cfoutput>The selected fruit were: #selectedFruit#</cfoutput>