You don't really need to use a RegEx on this, you can just use the replace function on 
this, unless you want to remove any special character that makes XML fall over.

replace(yourString, "é", "e", "all")

I guess your best bet would be to replace the character with the following ISO code or 
some other equivalent that won't make xml fall over

replace(yourString, "é", "é", "all")

I'm sure there is a tag or function somewhere that will do exactly what you want when 
you do a search in google or have a look at http://www.cflib.org/library.cfm?ID=1


Taco

-----Original Message-----
From: Andrew Parker [mailto:[EMAIL PROTECTED] 
Sent: Friday, 6 June 2003 8:58 AM
To: CFAussie Mailing List
Subject: [cfaussie] Re: regex against word


One I found was the apostrophe above the 'e' in décor. 
XML throws a wobbly at these types of characters and thought there may be a regex that 
could grab them when used in these rare occasions.

Cheers
Drew

-----Original Message-----
From: Taco Fleur [mailto:[EMAIL PROTECTED] 
Sent: Thursday, 5 June 2003 8:19 PM
To: CFAussie Mailing List
Subject: [cfaussie] Re: regex against word


What kind of characters are they?
Example would help.

-----Original Message-----
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Drew
Sent: Thursday, 5 June 2003 5:03 PM
To: CFAussie Mailing List
Subject: [cfaussie] Re: regex against word


microsoft word of course :)

Cheers again
Drew

---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED] To unsubscribe send a 
blank email to [EMAIL PROTECTED]

MX Downunder AsiaPac DevCon - http://mxdu.com/



---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]

MX Downunder AsiaPac DevCon - http://mxdu.com/

---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]

MX Downunder AsiaPac DevCon - http://mxdu.com/

---------------------------------------------------------------------------- 
This email, together with any attachments, is intended for the named 
recipient(s) only and may contain privileged and confidential information. If 
received in error, please inform the sender as quickly as possible and delete 
this email and any copies from your computer system network.

If not an intended recipient of this email, you must not copy, distribute or 
rely upon it and any form of disclosure, modification, distribution and/or 
publication of this email is prohibited.

Unless stated otherwise, this email represents only the views of the sender and 
not the views of the Queensland Government. 
---------------------------------------------------------------------------- 

---
You are currently subscribed to cfaussie as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]

MX Downunder AsiaPac DevCon - http://mxdu.com/

Reply via email to