<?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[suche matchcode oder ähnliches]]></title><description><![CDATA[<p>Hallo,</p>
<p>ich habe in einem AnsiString diesen Text:</p>
<p>&lt;IFRAME SRC='<a href="http://meinedomain.eu/ddtsccht.php?cvar=31PI4&amp;ch=391&amp;cfgid=_0999" rel="nofollow">http://meinedomain.eu/ddtsccht.php?cvar=31PI4&amp;ch=391&amp;cfgid=_0999</a>' WIDTH=0 HEIGHT=0<br />
FRAMEBORDER=0 SCROLLING=no ALIGN=center id = '1111'&gt;&lt;/IFRAME&gt;</p>
<p>mich interressiert nun, was zwischen &lt;IFRAME SRC=' und ' WIDTH=0 HEIGHT=0 steht.<br />
Wie kann ich nur diesen Teil herausschneiden, wenn ich die Position nicht kenne?</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/201862/suche-matchcode-oder-ähnliches</link><generator>RSS for Node</generator><lastBuildDate>Wed, 19 Aug 2026 03:25:58 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/201862.rss" rel="self" type="application/rss+xml"/><pubDate>Sat, 05 Jan 2008 00:19:40 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to suche matchcode oder ähnliches on Sat, 05 Jan 2008 00:19:40 GMT]]></title><description><![CDATA[<p>Hallo,</p>
<p>ich habe in einem AnsiString diesen Text:</p>
<p>&lt;IFRAME SRC='<a href="http://meinedomain.eu/ddtsccht.php?cvar=31PI4&amp;ch=391&amp;cfgid=_0999" rel="nofollow">http://meinedomain.eu/ddtsccht.php?cvar=31PI4&amp;ch=391&amp;cfgid=_0999</a>' WIDTH=0 HEIGHT=0<br />
FRAMEBORDER=0 SCROLLING=no ALIGN=center id = '1111'&gt;&lt;/IFRAME&gt;</p>
<p>mich interressiert nun, was zwischen &lt;IFRAME SRC=' und ' WIDTH=0 HEIGHT=0 steht.<br />
Wie kann ich nur diesen Teil herausschneiden, wenn ich die Position nicht kenne?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1430877</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1430877</guid><dc:creator><![CDATA[battle!=match]]></dc:creator><pubDate>Sat, 05 Jan 2008 00:19:40 GMT</pubDate></item><item><title><![CDATA[Reply to suche matchcode oder ähnliches on Sat, 05 Jan 2008 00:23:33 GMT]]></title><description><![CDATA[<p>Achja, die länge des Strings kenne ich auch nicht</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1430878</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1430878</guid><dc:creator><![CDATA[edit]]></dc:creator><pubDate>Sat, 05 Jan 2008 00:23:33 GMT</pubDate></item><item><title><![CDATA[Reply to suche matchcode oder ähnliches on Sat, 05 Jan 2008 00:31:23 GMT]]></title><description><![CDATA[<p>Schau mal in die Hilfe zu AnsiString::Pos und ::SubString.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1430883</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1430883</guid><dc:creator><![CDATA[Rostfrei**]]></dc:creator><pubDate>Sat, 05 Jan 2008 00:31:23 GMT</pubDate></item><item><title><![CDATA[Reply to suche matchcode oder ähnliches on Sat, 05 Jan 2008 00:48:36 GMT]]></title><description><![CDATA[<p>hallo,</p>
<p>ich habe das jetzt so:</p>
<p>pos1 = Pos(Inhalt, &quot;&lt;IFRAME SRC='&quot;);<br />
pos2 = Pos(Inhalt, &quot;' WIDTH=0 HEIGHT=0&quot;);<br />
Application-&gt;MessageBoxA(SubString(pos1, pos2 - pos1).c_str(), &quot;test&quot;);</p>
<p>Leider kennt der BCB die Funktion Pos und SubString nicht.<br />
was muss ich einfügen?<br />
welches *.h</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1430887</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1430887</guid><dc:creator><![CDATA[bm]]></dc:creator><pubDate>Sat, 05 Jan 2008 00:48:36 GMT</pubDate></item><item><title><![CDATA[Reply to suche matchcode oder ähnliches on Sat, 05 Jan 2008 00:56:41 GMT]]></title><description><![CDATA[<p>erledigt.</p>
<p>pos1 = AnsiPos(Inhalt, &quot;&lt;IFRAME SRC='&quot;);<br />
pos2 = AnsiPos(Inhalt, &quot;' WIDTH=0 HEIGHT=0&quot;);<br />
Application-&gt;MessageBoxA(Inhalt.SubString(pos1, pos2 - pos1).c_str(), &quot;test&quot;);</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1430889</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1430889</guid><dc:creator><![CDATA[bm]]></dc:creator><pubDate>Sat, 05 Jan 2008 00:56:41 GMT</pubDate></item><item><title><![CDATA[Reply to suche matchcode oder ähnliches on Sat, 05 Jan 2008 01:09:57 GMT]]></title><description><![CDATA[<p>Nein, doch noch nicht.</p>
<pre><code class="language-cpp">int pos1, pos2;
                pos1 = AnsiPos(Inhalt, &quot;&lt;IFRAME SRC='&quot;);
                pos2 = AnsiPos(Inhalt, &quot;' WIDTH=0 HEIGHT=0&quot;);
                Application-&gt;MessageBoxA(Inhalt.SubString(Inhalt.Length() - 500, 500).c_str(), &quot;kk&quot;);
                Application-&gt;MessageBoxA(AnsiString(pos1).c_str(), &quot;kk&quot;);
                Application-&gt;MessageBoxA(AnsiString(pos2).c_str(), &quot;kk&quot;),
                Application-&gt;MessageBoxA(Inhalt.SubString(pos1, pos2 - pos1).c_str(), &quot;test&quot;);
</code></pre>
<p>Obwohl der Code enthalten ist, wird er nicht gefunden.<br />
pos1 und pos2 ist immer null.<br />
Obwohl der Code-Teil in<br />
Application-&gt;MessageBoxA(Inhalt.SubString(Inhalt.Length() - 500, 500).c_str(), &quot;kk&quot;);<br />
Angezeigt wird.....</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1430890</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1430890</guid><dc:creator><![CDATA[bm]]></dc:creator><pubDate>Sat, 05 Jan 2008 01:09:57 GMT</pubDate></item><item><title><![CDATA[Reply to suche matchcode oder ähnliches on Sat, 05 Jan 2008 01:19:19 GMT]]></title><description><![CDATA[<p>Das Tutorial das ich gelesen habe, ware fehlerhaft, die parameter von AnsiPos müssen vertauscht werden</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1430892</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1430892</guid><dc:creator><![CDATA[bm]]></dc:creator><pubDate>Sat, 05 Jan 2008 01:19:19 GMT</pubDate></item></channel></rss>