XML Escape Sequences
February 6, 2007
When using XML to be loaded into a flash file, the following signs have to be “escaped”:
| & (Ampersand) | & |
| < (Left angle bracket) | < |
| > (Right angle bracket) | > |
| ” (Straight quotation mark) | " |
| ‘ (Apostrophe) | ' |
To “escape” means you instead of using an &, <, > ,… you just use their longer description like & and you’re out of trouble.
Leave a Reply