devxlogo

Save XML Text to a String

Question:
I’m using MSXML to create a DOMDocument and add nodes and attributes. When I’m done, I’d like to save the XML text into a string. Unfortunately, the Save method outputs text only to a file or to an IStream object. I tried to use the Stream object from ADO (ActiveX Data Objects) 2.5 but that didn’t work. How can I get the XML text into a string?

Answer:

This is an easy one. Once you have your document (let’s call it xmlDoc), then converting it into a string is as simple as saying:

dim xmlStr as StringxmlStr=xmlDoc.xml

Similarly, the document’s loadXML method will take an XML string as an argument and convert it into an XML DOM:

xmlDoc.loadXML "This is a test"

Charlie has over a decade of experience in website administration and technology management. As the site admin, he oversees all technical aspects of running a high-traffic online platform, ensuring optimal performance, security, and user experience.

See also  Five Early Architecture Decisions That Quietly Get Expensive

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.