<?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[HTML-Quellentext in ein Array kopieren?]]></title><description><![CDATA[<p>Hi,</p>
<p>ich möchte Qullentext einer Internetseite (z.B.<a href="http://www.c-plusplus.net/index.php" rel="nofollow">http://www.c-plusplus.net/index.php</a>) , in ein Array vom Typ String kopieren. So, dass jede Zeile des Arrays eine Zeile der HTML-Datei erhält.</p>
<p>z.B<br />
S[0] -&gt; &lt;html&gt;<br />
S[1] -&gt; &lt;head&gt; usw.</p>
<p>danke im Voraus</p>
<p>Pythonich</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/74433/html-quellentext-in-ein-array-kopieren</link><generator>RSS for Node</generator><lastBuildDate>Sun, 28 Jun 2026 01:28:50 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/74433.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 20 May 2004 15:16:01 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to HTML-Quellentext in ein Array kopieren? on Thu, 20 May 2004 15:16:01 GMT]]></title><description><![CDATA[<p>Hi,</p>
<p>ich möchte Qullentext einer Internetseite (z.B.<a href="http://www.c-plusplus.net/index.php" rel="nofollow">http://www.c-plusplus.net/index.php</a>) , in ein Array vom Typ String kopieren. So, dass jede Zeile des Arrays eine Zeile der HTML-Datei erhält.</p>
<p>z.B<br />
S[0] -&gt; &lt;html&gt;<br />
S[1] -&gt; &lt;head&gt; usw.</p>
<p>danke im Voraus</p>
<p>Pythonich</p>
]]></description><link>https://www.c-plusplus.net/forum/post/524050</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/524050</guid><dc:creator><![CDATA[Pythonich]]></dc:creator><pubDate>Thu, 20 May 2004 15:16:01 GMT</pubDate></item><item><title><![CDATA[Reply to HTML-Quellentext in ein Array kopieren? on Thu, 20 May 2004 16:29:51 GMT]]></title><description><![CDATA[<p>Sehr schön. Ich möchte mal einen wirklich sicheren Webbrowser programmieren.</p>
<p>Im Ernst: hast du irgendwelche Fragen dazu? Was hast du schon versucht?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/524104</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/524104</guid><dc:creator><![CDATA[Dasd]]></dc:creator><pubDate>Thu, 20 May 2004 16:29:51 GMT</pubDate></item><item><title><![CDATA[Reply to HTML-Quellentext in ein Array kopieren? on Thu, 20 May 2004 16:30:38 GMT]]></title><description><![CDATA[<p>Hallo,</p>
<p>und was ist jetzt deine Frage? An den Quelltext ranzukommen oder das Array, oder beides?</p>
<p>Für den Quelltext kannst du die Indy-Komponente TIdHTTP nehmen und statt eines String-Arrays würde ich die TStringList empfehlen:</p>
<pre><code class="language-cpp">void __fastcall TForm1::Button1Click(TObject *Sender)
{
 TStringList *List = new TStringList;
 List-&gt;Text = IdHTTP1-&gt;Get(&quot;http://www.c-plusplus.net/index.php&quot;);

 //...................
 //...................

 delete List;
}
</code></pre>
<p>MfG<br />
tuküe</p>
]]></description><link>https://www.c-plusplus.net/forum/post/524106</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/524106</guid><dc:creator><![CDATA[tuküe]]></dc:creator><pubDate>Thu, 20 May 2004 16:30:38 GMT</pubDate></item><item><title><![CDATA[Reply to HTML-Quellentext in ein Array kopieren? on Thu, 20 May 2004 17:45:50 GMT]]></title><description><![CDATA[<p>Danke tuküe <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f44d.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--thumbs_up"
      title=":+1:"
      alt="👍"
    /> ,</p>
<p>hat's geklappt. Supper</p>
<p>noch eine kurze Frage: wie kann ich List-&gt;Text in List-&gt;Strings[] ablegen?</p>
<p>Pythonich</p>
]]></description><link>https://www.c-plusplus.net/forum/post/524151</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/524151</guid><dc:creator><![CDATA[Pythonich]]></dc:creator><pubDate>Thu, 20 May 2004 17:45:50 GMT</pubDate></item><item><title><![CDATA[Reply to HTML-Quellentext in ein Array kopieren? on Thu, 20 May 2004 17:49:59 GMT]]></title><description><![CDATA[<p>Hallo</p>
<p>mit</p>
<pre><code class="language-cpp">List-&gt;Strings[xy];
</code></pre>
<p>kannst du auf die Gewünschte Zeile zugreifen. Meinst du das?</p>
<p>MfG<br />
tuküe</p>
]]></description><link>https://www.c-plusplus.net/forum/post/524160</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/524160</guid><dc:creator><![CDATA[tuküe]]></dc:creator><pubDate>Thu, 20 May 2004 17:49:59 GMT</pubDate></item><item><title><![CDATA[Reply to HTML-Quellentext in ein Array kopieren? on Thu, 20 May 2004 17:54:37 GMT]]></title><description><![CDATA[<p>Pythonich schrieb:</p>
<blockquote>
<p>wie kann ich List-&gt;Text in List-&gt;Strings[] ablegen?</p>
</blockquote>
<p>Hast du schon, Text und Strings sind nur zwei verschiedene Zugriffsarten auf die selben Daten.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/524165</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/524165</guid><dc:creator><![CDATA[Dasd]]></dc:creator><pubDate>Thu, 20 May 2004 17:54:37 GMT</pubDate></item><item><title><![CDATA[Reply to HTML-Quellentext in ein Array kopieren? on Thu, 20 May 2004 17:58:05 GMT]]></title><description><![CDATA[<p>ja genau noch mal vielen Dank. Du hast mir sehr geholfen.</p>
<p>Pythonich</p>
]]></description><link>https://www.c-plusplus.net/forum/post/524166</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/524166</guid><dc:creator><![CDATA[Pythonich]]></dc:creator><pubDate>Thu, 20 May 2004 17:58:05 GMT</pubDate></item></channel></rss>