pugixml and node_pi Programming Software Development by stereomatching I would like to make pugixml print the node_pi as [code] <?xml version="1.0" encoding="utf-8"?> [/code] How could I manipulate node_pi through pugixml? Thanks What is the easiest way to sort the node of pugixml? Programming Software Development by stereomatching …;optional" /> <xs:complexType/> [/code] According to pugixml, call std::sort would not give user expected result because… How do I parse an XML file? Programming Software Development by AlecTaylor … morning, I've been trying with various libraries (everything from pugixml to RapidXML) but have been unable to parse a simple…. My RapidXML attempt: [url]https://ideone.com/XWylb[/url] My pugiXML attempt: [url]https://ideone.com/RzN6X[/url] XML file: [url… Parsing XML (3rd party library) Programming Software Development by Suzie999 …. Hi I'm hoping someone has used the library [pugixml](http://pugixml.org/) I'm just trying to use a simple example… I want to transform xml into source codes of C++ Programming Software Development by stereomatching … the power of boost::spirit and xml parser(I prefer pugixml since it support XPATH) to parse the xml into code… carriage return line feed replacement in XML Programming Software Development by helixkod …; I've been able to read the XML file with pugiXML but I have not been sucessful in converting it to… Re: What is the easiest way to sort the node of pugixml? Programming Software Development by mazzica1 you can use qsort with you custom function Re: How do I parse an XML file? Programming Software Development by AlecTaylor My tinyXML attempt: [url]https://ideone.com/yC1l8[/url] (still not working) Re: How do I parse an XML file? Programming Software Development by AlecTaylor Figured out the rapidxml version. Re: carriage return line feed replacement in XML Programming Software Development by helixkod Solution Found. I found out how to solve my own problem, but here's an update in case someone else needs to see this. std::ifstream ifs(skp_filename.c_str()); std::string content( (std::istreambuf_iterator<char>(ifs) ), (std::istreambuf_iterator<char>() ) ); size_t pos = 0; …