I also like the "addStruct" variable which then creates an Array :-)
"This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant, Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business, Registered in England, Number 678540. It contains information which is confidential and may also be privileged. It is for the exclusive use of the intended recipient(s). If you are not the intended recipient(s) please note that any form of distribution, copying or use of this communication or the information in it is strictly prohibited and may be unlawful. If you have received this communication in error please return it to the sender or call our switchboard on +44 (0) 20 89107910. The opinions expressed within this communication are not necessarily those expressed by Reed Exhibitions." Visit our website at http://www.reedexpo.com -----Original Message----- From: Scott Stewart To: CF-Talk Sent: Thu Apr 19 21:58:33 2007 Subject: manipulating array values Hey all Can somebody tell me why this doesn't work <cfset addStruct = ArrayNew(1)> <cfset addNum = 0> <cfloop list="#CiteDataArr[i].distributor#" delimiters="|" index="x"> <cfset addNum = addNum+1> <cfset addStruct[#addNum#] = #x#> </cfloop> <cfset addCut = REReplace((Evaluate(addStruct[3])), "[[:digit:]]", " ", "All")> The value of addStruct[3] is New York, New York, 10005 I can dump the array and I can output the value of addStruct[3] here: <cfif len(CiteDataArr[i].distributor)>Distributor: #addStruct[1]#; #addStruct[3]#; </cfif> If I try to remove the zip code using <cfset addCut = REReplace((Evaluate(addStruct[3])), "[[:digit:]]", " ", "All")> CF Throws an error saying it can't find the value of addStruct[3] -- Scott Stewart ColdFusion Developer SSTWebworks 7241 Jillspring Ct. Springfield, Va. 22152 (703) 220-2835 http://www.sstwebworks.com ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Upgrade to Adobe ColdFusion MX7 Experience Flex 2 & MX7 integration & create powerful cross-platform RIAs http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJQ Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:275890 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

