I am using MSXMl library to parse xml
after I call put_text and then get_xml
the output will have < & > converted to < & >
How can i get rid of this?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
< and > are prohibited to use inside the text and need to be encoded as > and <. The only way to avoid this is creating a CDATA section for the text containing those. But you really don’t need to if you intend to read the XMLT with MS XML – it will decode those symbols just fine and you will get your < and > perfectly fine in the extracted text.