<?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[string in int konvertieren]]></title><description><![CDATA[<p>Hallo,</p>
<p>wie konvertiere ich einen string (in dem eine Zahl steht) in einen Integer Wert? Habe StrToInt versucht, aber damit ging's nicht.</p>
<p>Danke schonmal. mtp</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/124526/string-in-int-konvertieren</link><generator>RSS for Node</generator><lastBuildDate>Sun, 23 Aug 2026 23:47:26 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/124526.rss" rel="self" type="application/rss+xml"/><pubDate>Fri, 28 Oct 2005 11:11:22 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to string in int konvertieren on Fri, 28 Oct 2005 11:11:22 GMT]]></title><description><![CDATA[<p>Hallo,</p>
<p>wie konvertiere ich einen string (in dem eine Zahl steht) in einen Integer Wert? Habe StrToInt versucht, aber damit ging's nicht.</p>
<p>Danke schonmal. mtp</p>
]]></description><link>https://www.c-plusplus.net/forum/post/902658</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/902658</guid><dc:creator><![CDATA[mtp]]></dc:creator><pubDate>Fri, 28 Oct 2005 11:11:22 GMT</pubDate></item><item><title><![CDATA[Reply to string in int konvertieren on Fri, 28 Oct 2005 11:15:12 GMT]]></title><description><![CDATA[<p>Blätter mal ein bischen in der C++ FAQ (ziemlich weit unten), dort gibt es eine Auswahl an möglichen Lösungswegen.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/902665</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/902665</guid><dc:creator><![CDATA[CStoll]]></dc:creator><pubDate>Fri, 28 Oct 2005 11:15:12 GMT</pubDate></item><item><title><![CDATA[Reply to string in int konvertieren on Fri, 28 Oct 2005 11:16:08 GMT]]></title><description><![CDATA[<p><a href="http://www.c-plusplus.net/forum/viewtopic-var-t-is-39488.html" rel="nofollow">FAQ!</a></p>
]]></description><link>https://www.c-plusplus.net/forum/post/902667</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/902667</guid><dc:creator><![CDATA[MFK]]></dc:creator><pubDate>Fri, 28 Oct 2005 11:16:08 GMT</pubDate></item><item><title><![CDATA[Reply to string in int konvertieren on Fri, 28 Oct 2005 12:43:10 GMT]]></title><description><![CDATA[<p>std::string s = &quot;15&quot;;<br />
int i;<br />
std::istringstream in(s);<br />
if (s &gt;&gt; i)<br />
{<br />
// i hat jetzt den Wert 15<br />
}</p>
]]></description><link>https://www.c-plusplus.net/forum/post/902767</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/902767</guid><dc:creator><![CDATA[tntnet]]></dc:creator><pubDate>Fri, 28 Oct 2005 12:43:10 GMT</pubDate></item></channel></rss>