Strip dots out of ip address

2006-06-27 Thread coldfusion . developer
All, I'm trying to strip the dots out of ip addresses. I'm trying to use it as part of a unique numeric value for e-mail confirmation. 69.124.49.27 Thanks. D ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:244906

Re: Strip dots out of ip address

2006-06-27 Thread Bryan F. Hogan
replace(yoyoma, '.', '', 'all') - Original Message - From: [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Tuesday, June 27, 2006 4:33 PM Subject: Strip dots out of ip address All, I'm trying to strip the dots out of ip addresses. I'm trying to use it as part

RE: Strip dots out of ip address

2006-06-27 Thread Ben Nadel
] Sent: Tuesday, June 27, 2006 4:33 PM To: CF-Talk Subject: Strip dots out of ip address All, I'm trying to strip the dots out of ip addresses. I'm trying to use it as part of a unique numeric value for e-mail confirmation. 69.124.49.27 Thanks. D

Re: Strip dots out of ip address

2006-06-27 Thread Nick Tong - TalkWebSolutions.co.uk
cfset newip = replace(ipAddress,.,,all) / ? On 27/06/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: All, I'm trying to strip the dots out of ip addresses. I'm trying to use it as part of a unique numeric value for e-mail confirmation. 69.124.49.27 Thanks. D

Re: Strip dots out of ip address

2006-06-27 Thread Phillip B. Holmes
No need for anything fancy there: cfscript strIP = '69.124.49.27'; strOut = replace(strIP,'.','','ALL'); writeOutput(strOut); /cfscript Best, Phillip Holmes Quoting [EMAIL PROTECTED]: All, I'm trying to strip the dots out of ip addresses. I'm trying to use it

RE: Strip dots out of ip address

2006-06-27 Thread Dave Watts
I'm trying to strip the dots out of ip addresses. I'm trying to use it as part of a unique numeric value for e-mail confirmation. 69.124.49.27 IP address dotted-quad values can be converted directly into integers: http://www.cflib.org/udf.cfm?ID=946 I wouldn't recommend just removing the

RE: Strip dots out of ip address

2006-06-27 Thread Dawson, Michael
-Original Message- From: Phillip B. Holmes [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 27, 2006 3:42 PM To: CF-Talk Subject: Re: Strip dots out of ip address No need for anything fancy there: cfscript strIP = '69.124.49.27'; strOut = replace(strIP,'.','','ALL'); writeOutput

Re: Strip dots out of ip address

2006-06-27 Thread Sam Farmer
On 6/27/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: I'm trying to use it as part of a unique numeric value for e-mail confirmation. Be careful though. IP addresses can change all the time. I rebooted today and got a different one. Cheers, Sam