If I want to to label some buttons with ">" and "<" symbols, what's the correct way to escape them out in the XML file? The presence of either ">" or "&" (as in "&gt") produces "invalid token" errors.

Thanks in advance.

link|improve this question

73% accept rate
It is &gt; (ie with semi-colons)? – pst Feb 12 '11 at 18:45
feedback

1 Answer

up vote 5 down vote accepted

Either specify those characters like this:

< = &lt;
> = &gt;

Or use a CDATA section and put those characters inside:

<![CDATA[<]]>
<![CDATA[>]]>
link|improve this answer
it was the semicolons... 8-( – Peter Nelson Feb 12 '11 at 18:59
feedback

Your Answer

 
or
required, but never shown

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