Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a string that says "the following characters are invalid: "! @ # $ % ^ \& * ( ) / \ or space" and i don't know how to put the & symbol into an xml file without causing an error? I know you are suppose to do something along the lines of \& but I'm not sure exactly what it is?

share|improve this question
relevent: stackoverflow.com/questions/1091945/… – Dylan Sep 21 '11 at 20:26

3 Answers

up vote 6 down vote accepted

If \& doesn't work, try the XML entity &.

share|improve this answer
thanks! I saw that before you said it but it didn't look right but its what i was looking for so thank you! – gsfd Sep 21 '11 at 20:35

& would be &.

Wikipedia has a list of XML and HTML character entity references.

share|improve this answer
+1 very good information – Atul Bhardwaj Dec 14 '12 at 10:22

in the context of an XML

& is &
< is &lt;
> is &gt;
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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