|
|
Special Characters and XML Strings - XML
|
Views : 164
|
|
Tagged in : XML
|
|
|
Report This Scrap as Inappropriate We request you to choose the appropriate categroy and subcategory that suits your
objectionable concern about the scrap, So that our team can review and find out whether it violates our Guidelines or the
scrap is not suitable for all viewers.
|
Special Characters and XML Strings
XML has a special set of characters that cannot be used in normal XML strings. These characters are:
1. & - &
2. < - <
3. > - >
4. " - "
5. ' - '
For example, the following XML string is invalid:
<Organization>IBM & Microsoft</Organization>
Whereas the following is valid XML:
<Organization>IBM & Microsoft</Organization>
Note that we have replaced '&' with '&' in the second XML string which makes it valid. |
|
By Rekha, On - 2010-10-14 |
|
|
|