RE: Changing tag case

2005-10-13 Thread Bobby Hartsfield
mlSTRING (not xmlparsed data) > > xmlparse it AFTER you run the rereplace > > > ..:.:.:.:.:.:.:.:.:.:.:.:.:.:. > Bobby Hartsfield > http://acoderslife.com > > -Original Message- > From: Helmut Doll [mailto:[EMAIL PROTECTED] > Sent: Thursday, October 13, 2005 4:00 PM > T

Re: Changing tag case

2005-10-13 Thread Helmut Doll
mlSTRING (not xmlparsed data) > > xmlparse it AFTER you run the rereplace > > > ..:.:.:.:.:.:.:.:.:.:.:.:.:.:. > Bobby Hartsfield > http://acoderslife.com > > -Original Message- > From: Helmut Doll [mailto:[EMAIL PROTECTED] > Sent: Thursday, October 13, 2005 4:00 PM > To: CF-T

RE: Changing tag case

2005-10-13 Thread Bobby Hartsfield
rsed data) xmlparse it AFTER you run the rereplace ..:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Helmut Doll [mailto:[EMAIL PROTECTED] Sent: Thursday, October 13, 2005 4:00 PM To: CF-Talk Subject: Re: Changing tag case The data comes f

Re: Changing tag case

2005-10-13 Thread Rob
In situations like that, I've made XSLTs that are applied to the different formats based on incoming URLs to make them into a common format. So when you get another customer (or whatever) with yet another different format, you only have write a new sheet and still only deal with your one common for

Re: Changing tag case

2005-10-13 Thread Helmut Doll
The data comes from different sources and is submitted to the CF app. I am currently doing a search and replace that changes individual tags when I notice a problem, but that is not scalable. I am looking for a (maybe regular expression) solution (it has to be in cf), that would find all xml ta

RE: Changing tag case

2005-10-13 Thread Justin D. Scott
> I need to parse and search xml data using coldfusion > where tags are not always using the same case. (i.e. > sometimes and sometimes . > While parsing is case-insensitive, xmlsearch is not. > > Is there a search and replace that would convert all > tags to lowercase letters? Is there a reason