Inhaltsverzeichnis

isalnum()

#include:: <cctype> <code cpp> int isalnum (int c) </code> Ist c ein Buchstabe oder ein Zifferzeichen? ==== Parameter ==== | c'' | Zeichen |

Ergebnis

Rückgabewert: ungleich 0, falls das Zeichen dieser Gruppe angehört.

Siehe auch

<locale>, isalpha(), iscntrl(), isdigit(), isgraph(), islower(), isprint(), ispunct(), isspace(), isupper(), isxdigit().

Beispiel

isalnum.cpp
#include <cctype>
#include <iostream>
using namespace std;
 
int main()
{
  cout << "alphanumerisch: \n";
  for (int i=0; i<256; ++i)
  {
    if (isalnum(i))
    {
      cout << i << ' ' << char(i) << '\n';
    }    
  }
}