<?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 prüfung auf Buchstaben]]></title><description><![CDATA[<p>Hallo,</p>
<p>mit welcher funktion prüf ich noch mal ob buchstaben in einem String sind ?</p>
<p>finde einfach keine infos mehr!</p>
<p>danke<br />
cc</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/43730/string-prüfung-auf-buchstaben</link><generator>RSS for Node</generator><lastBuildDate>Fri, 24 Apr 2026 23:41:55 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/43730.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 24 Jul 2003 12:43:05 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to String prüfung auf Buchstaben on Thu, 24 Jul 2003 12:43:05 GMT]]></title><description><![CDATA[<p>Hallo,</p>
<p>mit welcher funktion prüf ich noch mal ob buchstaben in einem String sind ?</p>
<p>finde einfach keine infos mehr!</p>
<p>danke<br />
cc</p>
]]></description><link>https://www.c-plusplus.net/forum/post/316473</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/316473</guid><dc:creator><![CDATA[cc]]></dc:creator><pubDate>Thu, 24 Jul 2003 12:43:05 GMT</pubDate></item><item><title><![CDATA[Reply to String prüfung auf Buchstaben on Thu, 24 Jul 2003 13:51:56 GMT]]></title><description><![CDATA[<p>steht eigentlich in jedem C++ Buch, aber naja:</p>
<pre><code class="language-cpp">int nCount = 0;
CString Text(&quot;Was auch immer&quot;);

for (int i = 0; i &lt; Text.GetLength(); i++) {
	if (isalpha(Text[i]) &amp;&amp; !isspace(Text[i]))
		nCount++;
}

::wsprintf((LPTSTR)(LPCTSTR)Text,&quot;%d Buchstaben gefunden&quot;,nCount);
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/316564</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/316564</guid><dc:creator><![CDATA[Shlo]]></dc:creator><pubDate>Thu, 24 Jul 2003 13:51:56 GMT</pubDate></item><item><title><![CDATA[Reply to String prüfung auf Buchstaben on Fri, 25 Jul 2003 06:30:52 GMT]]></title><description><![CDATA[<p><a class="plugin-mentions-user plugin-mentions-a" href="https://www.c-plusplus.net/forum/uid/3320">@Shlo</a></p>
<p>Sowas</p>
<blockquote>
<p>::wsprintf((LPTSTR)(LPCTSTR)Text,&quot;%d Buchstaben gefunden&quot;,nCount);</p>
</blockquote>
<p>dürfte unter Umständen mächtig krachen und hat hier als Hilfe für 'Anfänger' eigentlich nix verloren. Ist schliesslich ein MFC-Forum und kein 'Verscheisser-Forum' <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f609.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--winking_face"
      title=";)"
      alt="😉"
    /></p>
<p>-&gt; Man benutzt dafür Text.Format(...);</p>
]]></description><link>https://www.c-plusplus.net/forum/post/317103</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/317103</guid><dc:creator><![CDATA[RenéG]]></dc:creator><pubDate>Fri, 25 Jul 2003 06:30:52 GMT</pubDate></item></channel></rss>