<?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[wie string einlesen mit leerzeichen?]]></title><description><![CDATA[<p>wie kann ich einen string mit leerzeichen einlesen:</p>
<p>string str;<br />
cin &gt;&gt; str; //input: der string<br />
cout &lt;&lt; str; //ausgabe der, möchte aber auch string stehen haben.</p>
<p>wie kann ich das problem umgehen?</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/150666/wie-string-einlesen-mit-leerzeichen</link><generator>RSS for Node</generator><lastBuildDate>Sat, 05 Sep 2026 20:30:00 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/150666.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 19 Jun 2006 09:20:31 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to wie string einlesen mit leerzeichen? on Mon, 19 Jun 2006 09:20:31 GMT]]></title><description><![CDATA[<p>wie kann ich einen string mit leerzeichen einlesen:</p>
<p>string str;<br />
cin &gt;&gt; str; //input: der string<br />
cout &lt;&lt; str; //ausgabe der, möchte aber auch string stehen haben.</p>
<p>wie kann ich das problem umgehen?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1080466</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1080466</guid><dc:creator><![CDATA[tetrapack]]></dc:creator><pubDate>Mon, 19 Jun 2006 09:20:31 GMT</pubDate></item><item><title><![CDATA[Reply to wie string einlesen mit leerzeichen? on Mon, 19 Jun 2006 09:40:21 GMT]]></title><description><![CDATA[<p>tetrapack schrieb:</p>
<blockquote>
<p>wie kann ich das problem umgehen?</p>
</blockquote>
<p>Mit</p>
<pre><code class="language-cpp">getline(cin, str);
</code></pre>
<p>MfG</p>
<p>GPC</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1080481</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1080481</guid><dc:creator><![CDATA[GPC]]></dc:creator><pubDate>Mon, 19 Jun 2006 09:40:21 GMT</pubDate></item></channel></rss>