<?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[cpp string teilen]]></title><description><![CDATA[<p>hallo brauche dringend hilfe,</p>
<p>wie kann ich einen string wie z.b. den hier &quot;name nachname text&quot;<br />
in 3 variablen aufteilen, also das name in dem string name steht usw.<br />
danke schonmal im vorraus</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/149632/cpp-string-teilen</link><generator>RSS for Node</generator><lastBuildDate>Sat, 05 Sep 2026 07:40:42 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/149632.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 07 Jun 2006 21:36:52 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to cpp string teilen on Wed, 07 Jun 2006 21:36:52 GMT]]></title><description><![CDATA[<p>hallo brauche dringend hilfe,</p>
<p>wie kann ich einen string wie z.b. den hier &quot;name nachname text&quot;<br />
in 3 variablen aufteilen, also das name in dem string name steht usw.<br />
danke schonmal im vorraus</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1073495</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1073495</guid><dc:creator><![CDATA[Term1n5tor]]></dc:creator><pubDate>Wed, 07 Jun 2006 21:36:52 GMT</pubDate></item><item><title><![CDATA[Reply to cpp string teilen on Wed, 07 Jun 2006 21:52:51 GMT]]></title><description><![CDATA[<p>Hallo</p>
<p>siehe die methoden von <a href="http://www.cppreference.com/cppstring/index.html" rel="nofollow">std::string</a></p>
<p>bis bald<br />
akari</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1073505</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1073505</guid><dc:creator><![CDATA[akari]]></dc:creator><pubDate>Wed, 07 Jun 2006 21:52:51 GMT</pubDate></item><item><title><![CDATA[Reply to cpp string teilen on Thu, 08 Jun 2006 11:18:40 GMT]]></title><description><![CDATA[<pre><code class="language-cpp">#include &lt;string&gt;
#include &lt;sstream&gt;
using namespace std;

int main() 
{
   string str(&quot;name nachname text&quot;);
   istringstream istr(str);
   string name, nachname, text;
   istr &gt;&gt; name;
   istr &gt;&gt; nachname;
   istr &gt;&gt; text;
}
</code></pre>
<p><img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f642.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--slightly_smiling_face"
      title=":)"
      alt="🙂"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1073526</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1073526</guid><dc:creator><![CDATA[Helmut S.]]></dc:creator><pubDate>Thu, 08 Jun 2006 11:18:40 GMT</pubDate></item></channel></rss>