<?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[istringstream updaten?]]></title><description><![CDATA[<p>Ist es möglich sowas zu aktualisieren, also anstatt str ein anderen string zu füllen?</p>
<pre><code class="language-cpp">istringstream cmdline (str);
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/topic/160947/istringstream-updaten</link><generator>RSS for Node</generator><lastBuildDate>Fri, 11 Sep 2026 17:29:13 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/160947.rss" rel="self" type="application/rss+xml"/><pubDate>Sun, 01 Oct 2006 16:07:38 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to istringstream updaten? on Sun, 01 Oct 2006 16:08:02 GMT]]></title><description><![CDATA[<p>Ist es möglich sowas zu aktualisieren, also anstatt str ein anderen string zu füllen?</p>
<pre><code class="language-cpp">istringstream cmdline (str);
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/1147480</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1147480</guid><dc:creator><![CDATA[kernel64]]></dc:creator><pubDate>Sun, 01 Oct 2006 16:08:02 GMT</pubDate></item><item><title><![CDATA[Reply to istringstream updaten? on Sun, 01 Oct 2006 16:56:02 GMT]]></title><description><![CDATA[<p>Habs hinbekommen:</p>
<pre><code class="language-cpp">// Stream-Objekt definieren
std::istringstream is;
// string definieren und initalisieren
std::string s1 = &quot;123 456 3.4&quot;;
// String dem Stream-Objekt zuweisen
is.str(s1);
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/1147505</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1147505</guid><dc:creator><![CDATA[kernel64]]></dc:creator><pubDate>Sun, 01 Oct 2006 16:56:02 GMT</pubDate></item></channel></rss>