vote up 1 vote down star

Hi Girls and rest,

I have a question for XML document special chars, I'm using & in on of the value of the item in XML and TXMLDoc Delphi parser is complaining about it.

I search for some XML parsing options but none of them concerning special chars,

any ideas?

Example:

    <Configuration>
      <Configuration_item>  
        <view_name value="some view & name"/>

....

Regards, Mika

flag
1  
Girls? I know it's friday night (at least over here), but... maybe you should go out or something :) – Thorarin Aug 7 at 21:53
1  
I'm not interested in Girls, maybe we can go out sometime? – unknown (google) Aug 10 at 20:14

3 Answers

vote up 7 vote down check

Use &amp; to represent an ampersand. The reason you need to do this is because & is a special character in XML - specifically, the character used to indicate the start of an XML entity, which is used to specify characters in the content that would (ironically) otherwise be special/complex characters.

<view_name value="some view &amp; name"/>

Other common XML entities:

  • " is &quot;
  • < is &lt; (short for less-than)
  • > is &gt; (short for greater-than)

For more info:

http://www.xml.com/pub/a/2001/01/31/qanda.html

link|flag
wow man, that was quick, I was still editing post, and correct! Thanks! – unknown (google) Aug 7 at 21:42
vote up 3 vote down

&, < and > are the special characters you'll want to watch out for, and within an attribute also ". & is kind of like the XML escape character.

They can be escaped thus:

  • & => &amp;
  • < => &lt;
  • > => &gt;
  • " => &quot;

(Actually, and oddly, you don't really need to escape > within an attribute, only <. Also, if you use ' instead of " for your attribute delimiters, instead of having to escape " as &quot; you need to escape ' as &apos;. See the AttValue reference in the XML specification for details.)

link|flag
vote up 2 vote down

Dav and lavinio are right.

If you have a block of text with lots of special characters you might want to enclose it in CDATA instead.

link|flag
NOTE: You can't use CDATA for attribute values, just for blocks of text between tags. – Eric J. Aug 7 at 21:39

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.