<?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[Zahl an AnsiString hängen]]></title><description><![CDATA[<p>Hallo,</p>
<p>ich möchte mit einer Schleife eine Zahl an einen AnsiString hängen.</p>
<p>z.B. String0, String1, String2,...</p>
<p>Habe folgendes versucht:</p>
<pre><code class="language-cpp">AnsiString Test;

Test = &quot;String&quot; + i; // i ist der Counter der Schleife
</code></pre>
<p>Komme nicht weiter damit. Wer kann mir helfen?</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/136569/zahl-an-ansistring-hängen</link><generator>RSS for Node</generator><lastBuildDate>Sat, 01 Aug 2026 18:55:25 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/136569.rss" rel="self" type="application/rss+xml"/><pubDate>Sat, 11 Feb 2006 14:15:59 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Zahl an AnsiString hängen on Sat, 11 Feb 2006 14:15:59 GMT]]></title><description><![CDATA[<p>Hallo,</p>
<p>ich möchte mit einer Schleife eine Zahl an einen AnsiString hängen.</p>
<p>z.B. String0, String1, String2,...</p>
<p>Habe folgendes versucht:</p>
<pre><code class="language-cpp">AnsiString Test;

Test = &quot;String&quot; + i; // i ist der Counter der Schleife
</code></pre>
<p>Komme nicht weiter damit. Wer kann mir helfen?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/991556</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/991556</guid><dc:creator><![CDATA[rzwodzwo]]></dc:creator><pubDate>Sat, 11 Feb 2006 14:15:59 GMT</pubDate></item><item><title><![CDATA[Reply to Zahl an AnsiString hängen on Sat, 11 Feb 2006 14:17:24 GMT]]></title><description><![CDATA[<p>Test = &quot;String&quot; + StrToInt(i);</p>
]]></description><link>https://www.c-plusplus.net/forum/post/991560</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/991560</guid><dc:creator><![CDATA[Christian211]]></dc:creator><pubDate>Sat, 11 Feb 2006 14:17:24 GMT</pubDate></item><item><title><![CDATA[Reply to Zahl an AnsiString hängen on Sat, 11 Feb 2006 14:18:17 GMT]]></title><description><![CDATA[<p>Blödsinn:</p>
<p>Test = &quot;String&quot; +IntToStr(i);</p>
<p>Naja, kennst du auch gleich die umkehr</p>
]]></description><link>https://www.c-plusplus.net/forum/post/991561</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/991561</guid><dc:creator><![CDATA[Christian211]]></dc:creator><pubDate>Sat, 11 Feb 2006 14:18:17 GMT</pubDate></item><item><title><![CDATA[Reply to Zahl an AnsiString hängen on Sat, 11 Feb 2006 14:18:48 GMT]]></title><description><![CDATA[<p>Stichwort explizites Cast.</p>
<pre><code class="language-cpp">Test = &quot;String&quot; + AnsiString(i);
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/991563</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/991563</guid><dc:creator><![CDATA[Fincki]]></dc:creator><pubDate>Sat, 11 Feb 2006 14:18:48 GMT</pubDate></item><item><title><![CDATA[Reply to Zahl an AnsiString hängen on Sat, 11 Feb 2006 14:43:16 GMT]]></title><description><![CDATA[<p>Vielen Dank an alle, jetzt funktionierts!</p>
]]></description><link>https://www.c-plusplus.net/forum/post/991596</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/991596</guid><dc:creator><![CDATA[rzwodzwo]]></dc:creator><pubDate>Sat, 11 Feb 2006 14:43:16 GMT</pubDate></item></channel></rss>