RE: Replace comma in replace list

2008-06-26 Thread Bobby Hartsfield
Yeah that is unfortunate. I've never found a need for it personally though
:-)

..:.:.:.:.:.:.:.:.:.:.
Bobby Hartsfield
http://acoderslife.com
http://cf4em.com

-Original Message-
From: Barney Boisvert [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, June 25, 2008 6:08 PM
To: CF-Talk
Subject: Re: Replace comma in replace list

You can't supply an alternate delimiter to replaceList, unfortunately,
so that won't work.

cheers,
barneyb

On Wed, Jun 25, 2008 at 3:05 PM, Bobby Hartsfield <[EMAIL PROTECTED]>
wrote:
> Change your list delimiter so a comma isn't interpreted as a delimiter.
> Check out listChangeDelims() (or something like that)
>
> ..:.:.:.:.:.:.:.:.:.:.
> Bobby Hartsfield
> http://acoderslife.com
> http://cf4em.com

-- 
Barney Boisvert
[EMAIL PROTECTED]
http://www.barneyb.com/

Got Gmail? I have 100 invites.



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;203748912;27390454;j

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:308224
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Replace comma in replace list

2008-06-26 Thread Claude Schneegans
 >>after playing with regex for 2 hours.

Not bad. The average is at leat 6 hours ;-)

-- 
___
REUSE CODE! Use custom tags;
See http://www.contentbox.com/claude/customtags/tagstore.cfm
(Please send any spam to this address: [EMAIL PROTECTED])
Thanks.


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;203748912;27390454;j

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:308195
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Replace comma in replace list

2008-06-26 Thread Robert Harrison
Thanks... that is how I did it in the end, after playing with regex for 2
hours.

Robert B. Harrison
Director of Interactive services
Austin & Williams
125 Kennedy Drive, Suite 100 Hauppauge NY 11788
T : 631.231.6600 Ext. 119 
F : 631.434.7022
www.austin-williams.com

Great advertising can't be either/or... It must be &.
-Original Message-
From: Claude Schneegans [mailto:[EMAIL PROTECTED] 
Sent: Thursday, June 26, 2008 10:15 AM
To: CF-Talk
Subject: Re: Replace comma in replace list

 >>How do I indicate a comma in a replace list so I can replace the comma?

replaceList is not the right tool for this, and since you are replacing 
all characters by the same one,
what you need is REReplace. ie : REReplace (MyString, 
"[##""%/\\*?<>|:$.'&@,]", "_", "all")

Example:
a|a:a$a.a'a&[EMAIL PROTECTED],a">
#REReplace (MyString, "[##""%/\\*?<>|:$.'&@,]", "_", 
"all")#

-- 
___
REUSE CODE! Use custom tags;
See http://www.contentbox.com/claude/customtags/tagstore.cfm
(Please send any spam to this address: [EMAIL PROTECTED])
Thanks.




~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;203748912;27390454;j

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:308194
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Replace comma in replace list

2008-06-26 Thread Claude Schneegans
 >>How do I indicate a comma in a replace list so I can replace the comma?

replaceList is not the right tool for this, and since you are replacing 
all characters by the same one,
what you need is REReplace. ie : REReplace (MyString, 
"[##""%/\\*?<>|:$.'&@,]", "_", "all")

Example:
a|a:a$a.a'a&[EMAIL PROTECTED],a">
#REReplace (MyString, "[##""%/\\*?<>|:$.'&@,]", "_", 
"all")#

-- 
___
REUSE CODE! Use custom tags;
See http://www.contentbox.com/claude/customtags/tagstore.cfm
(Please send any spam to this address: [EMAIL PROTECTED])
Thanks.


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;203748912;27390454;j

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:308188
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Replace comma in replace list

2008-06-26 Thread Pete Jordan
Robert Harrison wrote:

> How do I indicate a comma in a replace list so I can replace the comma?
> 
> Example:
>,/,\,*,?,<,>,|,:,$,.,',&,@,#chr(44)#",
> "_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_")#">
> 
> chr(44) is the comma, but that doesn't work and neither does ,,.

You could use a different list delimiter, as suggested; a neater
solution might be to use rereplace.

<|:$.'&~,]", "_",
"ALL")/>

If (taking a wild guess) this is for generating something like part of a
permalink from a title string, you might want to squash multiple
matching characters to a single underscore:

<|:$.'&~,]+", "_",
"ALL")/>

You can simplify this even more if you actually want to hit all
non-alphanumerics:



-- 
Regards,

Pete Jordan
Horus Web Engineering Ltd
http://www.webhorus.net/
phone: +44 1275 543971
mobile: +44 7973 725120

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;203748912;27390454;j

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:308173
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Replace comma in replace list

2008-06-25 Thread Sam Roach
I don't know if you can do it with the ReplaceList function at all...  But
you can wrap your var with a replace first..

Example:
,|,:,$,.,',&,@,#chr(44)#","_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_")#">

hope this helps.

-- Sam

On Wed, Jun 25, 2008 at 1:49 PM, Robert Harrison <[EMAIL PROTECTED]>
wrote:

> How do I indicate a comma in a replace list so I can replace the comma?
>
> Example:
> ,/,\,*,?,<,>,|,:,$,.,',&,@,#chr(44)#",
> "_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_")#">
>
> chr(44) is the comma, but that doesn't work and neither does ,,.
>
>
> Robert B. Harrison
> Director of Interactive services
> Austin & Williams
> 125 Kennedy Drive, Suite 100 Hauppauge NY 11788
> T : 631.231.6600 Ext. 119
> F : 631.434.7022
> www.austin-williams.com
>
> Great advertising can't be either/or... It must be &.
>
>
>
> 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;203748912;27390454;j

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:308171
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Replace comma in replace list

2008-06-25 Thread Barney Boisvert
You can't supply an alternate delimiter to replaceList, unfortunately,
so that won't work.

cheers,
barneyb

On Wed, Jun 25, 2008 at 3:05 PM, Bobby Hartsfield <[EMAIL PROTECTED]> wrote:
> Change your list delimiter so a comma isn't interpreted as a delimiter.
> Check out listChangeDelims() (or something like that)
>
> ..:.:.:.:.:.:.:.:.:.:.
> Bobby Hartsfield
> http://acoderslife.com
> http://cf4em.com

-- 
Barney Boisvert
[EMAIL PROTECTED]
http://www.barneyb.com/

Got Gmail? I have 100 invites.

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;203748912;27390454;j

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:308152
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Replace comma in replace list

2008-06-25 Thread Bobby Hartsfield
Change your list delimiter so a comma isn't interpreted as a delimiter.
Check out listChangeDelims() (or something like that)

..:.:.:.:.:.:.:.:.:.:.
Bobby Hartsfield
http://acoderslife.com
http://cf4em.com

-Original Message-
From: Robert Harrison [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, June 25, 2008 4:50 PM
To: CF-Talk
Subject: Replace comma in replace list

How do I indicate a comma in a replace list so I can replace the comma?

Example:
,|,:,$,.,',&,@,#chr(44)#",
"_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_")#">

chr(44) is the comma, but that doesn't work and neither does ,,.


Robert B. Harrison
Director of Interactive services
Austin & Williams
125 Kennedy Drive, Suite 100 Hauppauge NY 11788
T : 631.231.6600 Ext. 119 
F : 631.434.7022
www.austin-williams.com

Great advertising can't be either/or... It must be &.





~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;203748912;27390454;j

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:308151
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Replace comma in replace list

2008-06-25 Thread Barney Boisvert
I think you have to do it separately.  So do your replaceList for
everything except comma, and then follow it up with a replace for just
the comma.

cheers,
barneyb

On Wed, Jun 25, 2008 at 1:49 PM, Robert Harrison
<[EMAIL PROTECTED]> wrote:
> How do I indicate a comma in a replace list so I can replace the comma?
>
> Example:
> ,/,\,*,?,<,>,|,:,$,.,',&,@,#chr(44)#",
> "_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_")#">
>
> chr(44) is the comma, but that doesn't work and neither does ,,.
>
>
> Robert B. Harrison
> Director of Interactive services
> Austin & Williams
> 125 Kennedy Drive, Suite 100 Hauppauge NY 11788
> T : 631.231.6600 Ext. 119
> F : 631.434.7022
> www.austin-williams.com
>
> Great advertising can't be either/or... It must be &.
>
>
>
> 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;203748912;27390454;j

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:308149
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Replace comma in replace list

2008-06-25 Thread Robert Harrison
How do I indicate a comma in a replace list so I can replace the comma?

Example:
,|,:,$,.,',&,@,#chr(44)#",
"_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_,_")#">

chr(44) is the comma, but that doesn't work and neither does ,,.


Robert B. Harrison
Director of Interactive services
Austin & Williams
125 Kennedy Drive, Suite 100 Hauppauge NY 11788
T : 631.231.6600 Ext. 119 
F : 631.434.7022
www.austin-williams.com

Great advertising can't be either/or... It must be &.



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;203748912;27390454;j

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:308148
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4