difference between &#0D; and 

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • sandeep kumar shah
    New Member
    • Oct 2008
    • 4

    difference between &#0D; and 

    Hi friends,
    I have a problem while parsing an xml file. When the value of an attribute contains &#0D; it gives error but when we use 
 it's ok..
    Could anyone plz tell me what is the difference between these two.

    <person name="sandeep &#0D; kumar"/> //cause error
    <person name="sandeep &#xD; kumar"/> //ok
  • Dormilich
    Recognized Expert Expert
    • Aug 2008
    • 8694

    #2
    D is not part of the decimal number system.
    &#38;#xD; - Unicode Entity in hexadecimal notation (it's because of the "x" after the "#")
    &#38;#13; - same Unicode Entity in decimal notation

    regards

    Comment

    Working...