<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[TinyXML in einer Schleife]]></title><description><![CDATA[<p>Hallo, ich habe eine kurze frage.<br />
Wie kann ich TinyXML in einer Schleife anwenden? Es soll solange den Text aus der Verzweigung Data lesen bis es kein &quot;&lt;data&gt;...Inhalt...&lt;/data&gt;&quot; steht.</p>
<p>tinyxml2::XMLNode* root = doc.FirstChildElement(&quot;document&quot;);<br />
tinyxml2::XMLElement* element = element-&gt;NextSiblingElement(&quot;data&quot;);<br />
<strong>&lt;while / for ...Bedingung ????&gt;</strong><br />
element = element-&gt;NextSiblingElement();</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/338052/tinyxml-in-einer-schleife</link><generator>RSS for Node</generator><lastBuildDate>Wed, 15 Apr 2026 09:13:32 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/338052.rss" rel="self" type="application/rss+xml"/><pubDate>Sat, 21 May 2016 10:07:36 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to TinyXML in einer Schleife on Sat, 21 May 2016 10:07:36 GMT]]></title><description><![CDATA[<p>Hallo, ich habe eine kurze frage.<br />
Wie kann ich TinyXML in einer Schleife anwenden? Es soll solange den Text aus der Verzweigung Data lesen bis es kein &quot;&lt;data&gt;...Inhalt...&lt;/data&gt;&quot; steht.</p>
<p>tinyxml2::XMLNode* root = doc.FirstChildElement(&quot;document&quot;);<br />
tinyxml2::XMLElement* element = element-&gt;NextSiblingElement(&quot;data&quot;);<br />
<strong>&lt;while / for ...Bedingung ????&gt;</strong><br />
element = element-&gt;NextSiblingElement();</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2496457</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2496457</guid><dc:creator><![CDATA[RBTVFan]]></dc:creator><pubDate>Sat, 21 May 2016 10:07:36 GMT</pubDate></item><item><title><![CDATA[Reply to TinyXML in einer Schleife on Sat, 21 May 2016 10:31:04 GMT]]></title><description><![CDATA[<pre><code class="language-cpp">tinyxml2::XMLNode* root = doc.FirstChildElement(&quot;document&quot;);
tinyxml2::XMLElement* element;
while( element = element-&gt;NextSiblingElement(&quot;data&quot;) ) {
    // mach was mit element
}
</code></pre>
<p>?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2496458</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2496458</guid><dc:creator><![CDATA[Swordfish]]></dc:creator><pubDate>Sat, 21 May 2016 10:31:04 GMT</pubDate></item><item><title><![CDATA[Reply to TinyXML in einer Schleife on Sat, 21 May 2016 17:29:59 GMT]]></title><description><![CDATA[<p>Danke</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2496498</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2496498</guid><dc:creator><![CDATA[RBTVFan]]></dc:creator><pubDate>Sat, 21 May 2016 17:29:59 GMT</pubDate></item></channel></rss>