Tagged Questions
The pugixml tag has no wiki summary.
4
votes
1answer
114 views
pugixml vs tinyxml
Short question: any comments on comparison of pugixml and tinyxml please?
Details
I need to use an XML parser/writer. My software is written in C++.
It seems to me TinyXML and pugixml are both good ...
2
votes
2answers
297 views
pugixml “extend” element to add value
I trying to set the value of an element, regulary when the element looks like this <element></element> I just do this :
pugi::xml_node node = xmlBase.child("element");
pugi::xml_node ...
2
votes
1answer
342 views
Get line/column of an XPath query in Pugixml
We want to get the line/column of an xpath query result in pugixml :
pugi::xpath_query query_child(query_str);
std::string value = Convert::toString(query_child.evaluate_string(root_node));
We can ...
1
vote
1answer
146 views
Using pugixml in Visual C++ .NET 2010
I am building a GUI for my final project. This project uses pugixml as xml parser for reading some data. Everything works in console mode.
So I started a new windows form project and I added all the ...
1
vote
1answer
516 views
XML parsing with PugiXML, infinite loop
this is pretty much the first C++ program that I ever made, it should display a list of xml nodes in the document. I made an exact same thing work using TinyXML, but I find Pugi much nicer and would ...
0
votes
1answer
20 views
pugixml node_cdata, node_pcdata set_value() invalid characters
pugixml seems to be adding invalid characters when I set the value of a node_pcdata. The code is below. What I'm trying to do is base-64 encode a PNG and send it via XML. I wrote the base-64 encoded ...
0
votes
1answer
23 views
Unresolved externals while creating static lib which uses PugiXml
I'm writing a static library that uses PugiXml for xml parsing. Here is the linker output from Visual Studio 2010 (I've replaced the symbol with ellipses for readability):
error LNK2019: unresolved ...
0
votes
0answers
67 views
convert from pugi::char_t to wchar_t [closed]
Possible Duplicate:
how to convert pugi:char_t* to string?
I asked the question before, how can I convert pugi::char_t to wchar_t*. in the code below:
for (pugi::xml_node_iterator it = ...
0
votes
1answer
154 views
how to convert pugi:char_t* to string? [closed]
Possible Duplicate:
How to convert pugi::char_t* to string
how can I convert pugi:char_t* type to wchar_t string?
I want to compare the result of child_value() to some utf8 string and ...
0
votes
1answer
77 views
Is there any MIT JSON parser with syntax similar to pugixml?
So I need to do JSON documents parsing. I already parse xml documents with pugixml and now I need to parse JSON documents with the same\similar rules as XML ones.
Is there an opensourse (MIT or ...
0
votes
1answer
210 views
How to convert pugi::char_t* to string
Hi
I'm using pugixml to process xml documents. I iterate through nodes using this construction
pugi::xml_node tools = doc.child("settings");
//[code_traverse_iter
for ...