Andre-
Friday, October 19, 2012, 7:30:51 AM, you wrote:
> Our XML parser is pretty forgiving, it appears that it allows &... who
> knows what more it may allow :-D
Ah, never mind. I thought the issue was with ampersands and commas and
other things in xml tags, not in the data elements. Yes, ther
On Thu, Oct 18, 2012 at 9:54 PM, Mark Wieder wrote:
> Andre-
>
> Thursday, October 18, 2012, 2:31:25 PM, you wrote:
>
> > TRICK #1:
>
> > I replace every ampersand with something like:
>
> > replace "&" with "#AMPERSAND#" in tXML
>
> LOL. I use "_AMPERSAND_".
> I also replace comma with "_COMMA
On Thu, Oct 18, 2012 at 9:54 PM, Mark Wieder wrote:
> Andre-
>
> Thursday, October 18, 2012, 2:31:25 PM, you wrote:
>
> > TRICK #1:
>
> > I replace every ampersand with something like:
>
> > replace "&" with "#AMPERSAND#" in tXML
>
> LOL. I use "_AMPERSAND_".
> I also replace comma with "_COMMA
On 18 Oct 2012, at 16:35, Chris Sheffield wrote:
> For all you xml experts out there. Hoping someone has the answer for this...
>
> I need to use an ampersand character (&) in xml. It's in a company name like
> Levi Strauss & Co. Everything I can find on the topic says to use the entity
> ref
Andre-
Thursday, October 18, 2012, 2:31:25 PM, you wrote:
> TRICK #1:
> I replace every ampersand with something like:
> replace "&" with "#AMPERSAND#" in tXML
LOL. I use "_AMPERSAND_".
I also replace comma with "_COMMA_" because commas aren't allowed.
XML doesn't allow numeric keys, either,
Chris,
In theory you can't have ampersands in XML because it assumes it is an
entity. You can try using & but it shouldn't work because XML is not
HTML. I will tell you my dirty trick for dealing with ampersands. Its a
very boring trick.
TRICK #1:
I replace every ampersand with something like:
Well, how about that? I think that worked. I thought I had tried that earlier,
but apparently not.
Thanks,
Chris
On Oct 18, 2012, at 11:51 AM, stephen barncard
wrote:
> did you try its number ?? &
>
> http://www.w3schools.com/html/html_entities.asp
>
>
> On Thu, Oct 18, 2012 at 8:35
did you try its number ?? &
http://www.w3schools.com/html/html_entities.asp
On Thu, Oct 18, 2012 at 8:35 AM, Chris Sheffield wrote:
> For all you xml experts out there. Hoping someone has the answer for
> this...
>
> I need to use an ampersand character (&) in xml. It's in a company name
For all you xml experts out there. Hoping someone has the answer for this...
I need to use an ampersand character (&) in xml. It's in a company name like
Levi Strauss & Co. Everything I can find on the topic says to use the entity
reference "&", but this doesn't seem to be working. I just end up