Guest User

Untitled

a guest
Nov 20th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. <cfset strList = "HAM,HAM,CHEESE,TOAST,CHEESE,HAM" />
  2.  
  3. <cfset listStruct = {} />
  4.  
  5.  
  6. <cfloop list="#strList#" index="i">
  7. <cfset listStruct[i] = i />
  8. </cfloop>
  9.  
  10. <cfdump var="#strList#" />
  11. <cfdump var="#listStruct#" />
  12. <cfdump var="#structKeyList(listStruct)#" />
  13.  
  14.  
  15.  
  16. <cfscript>
  17. strList = "HAM,HAM,CHEESE,TOAST,CHEESE,HAM";
  18. for(i=1;i<=ListLen(strList);i++){
  19. writeoutput(ListGetAt(strList,i));
  20. listStruct[i] = ListGetAt(strList,i);
  21. }
  22. </cfscript>
Add Comment
Please, Sign In to add comment