<?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[std::string, &#x5C;n zählen]]></title><description><![CDATA[<p>Hallo liebe Cpp-Community!<br />
Ich habe eine einfach Frage. Ich habe einen String: &quot;1\n5\n3\n8&quot;.<br />
Wie kann ich die Zahlen ohne Zeilenumbruch ausgeben? Oder wie kann ich die Position von ihnen bestimmen?</p>
<p>Bin für jede Hilfe dankbar!<br />
MfG<br />
SenioritaGranitstein</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/258459/std-string-n-zählen</link><generator>RSS for Node</generator><lastBuildDate>Wed, 09 Sep 2026 09:51:59 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/258459.rss" rel="self" type="application/rss+xml"/><pubDate>Sun, 10 Jan 2010 18:59:53 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to std::string, &#x5C;n zählen on Sun, 10 Jan 2010 18:59:53 GMT]]></title><description><![CDATA[<p>Hallo liebe Cpp-Community!<br />
Ich habe eine einfach Frage. Ich habe einen String: &quot;1\n5\n3\n8&quot;.<br />
Wie kann ich die Zahlen ohne Zeilenumbruch ausgeben? Oder wie kann ich die Position von ihnen bestimmen?</p>
<p>Bin für jede Hilfe dankbar!<br />
MfG<br />
SenioritaGranitstein</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1836483</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1836483</guid><dc:creator><![CDATA[SenioritaGranitstein]]></dc:creator><pubDate>Sun, 10 Jan 2010 18:59:53 GMT</pubDate></item><item><title><![CDATA[Reply to std::string, &#x5C;n zählen on Sun, 10 Jan 2010 19:10:29 GMT]]></title><description><![CDATA[<p>boost::regex_replace</p>
<p>mfg, René~</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1836490</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1836490</guid><dc:creator><![CDATA[NewSoftzzz]]></dc:creator><pubDate>Sun, 10 Jan 2010 19:10:29 GMT</pubDate></item><item><title><![CDATA[Reply to std::string, &#x5C;n zählen on Sun, 10 Jan 2010 19:12:12 GMT]]></title><description><![CDATA[<p>Pack das alles in einen Stringstream und zieh die Zahlen raus.</p>
<pre><code class="language-cpp">stringstream foo(dein_string);
int bar;
while(foo&gt;&gt;bar) cout&lt;&lt;bar;
cout&lt;&lt;endl;
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/1836494</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1836494</guid><dc:creator><![CDATA[SeppJ]]></dc:creator><pubDate>Sun, 10 Jan 2010 19:12:12 GMT</pubDate></item><item><title><![CDATA[Reply to std::string, &#x5C;n zählen on Sun, 10 Jan 2010 19:16:15 GMT]]></title><description><![CDATA[<p>Danke SeppJ, hast mir echt geholfen!</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1836495</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1836495</guid><dc:creator><![CDATA[SenioritaGranitstein]]></dc:creator><pubDate>Sun, 10 Jan 2010 19:16:15 GMT</pubDate></item></channel></rss>