<?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 ohne Buchstaben]]></title><description><![CDATA[<p>Hallo,</p>
<p>vielleicht hat ja jemand eine Tipp für mich.</p>
<p>Ich muss mit Strings arbeiten und weiss nicht wie ich am einfachsten einen String nach Buchstaben durchsuche.</p>
<p>Vielen Dank<br />
Chris</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/148305/string-ohne-buchstaben</link><generator>RSS for Node</generator><lastBuildDate>Fri, 04 Sep 2026 14:09:52 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/148305.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 25 May 2006 12:45:12 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to String ohne Buchstaben on Thu, 25 May 2006 12:45:12 GMT]]></title><description><![CDATA[<p>Hallo,</p>
<p>vielleicht hat ja jemand eine Tipp für mich.</p>
<p>Ich muss mit Strings arbeiten und weiss nicht wie ich am einfachsten einen String nach Buchstaben durchsuche.</p>
<p>Vielen Dank<br />
Chris</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1064863</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1064863</guid><dc:creator><![CDATA[chrisk81]]></dc:creator><pubDate>Thu, 25 May 2006 12:45:12 GMT</pubDate></item><item><title><![CDATA[Reply to String ohne Buchstaben on Thu, 25 May 2006 13:07:55 GMT]]></title><description><![CDATA[<pre><code class="language-cpp">#include &lt;string&gt;
#include &lt;iostream&gt;
#include &lt;algorithm&gt;
#include &lt;cctype&gt;
using namespace std;

bool isNotAlpha(char c)
{
	return !(isalpha(c));
}

int main()
{
	string foo(&quot;bl%u6bb!s&quot;);
	string::iterator iter = remove_if(foo.begin(), foo.end(), isNotAlpha);
	foo.erase(iter, foo.end());
	cout &lt;&lt; foo;
}
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/1064872</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1064872</guid><dc:creator><![CDATA[Michael E.]]></dc:creator><pubDate>Thu, 25 May 2006 13:07:55 GMT</pubDate></item></channel></rss>