User Tools

Site Tools


cpp:cctype:isalnum

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

cpp:cctype:isalnum [2024/02/16 01:04] (current)
Line 1: Line 1:
 +{{keywords>wiki library source code example reference}}
 +====== isalnum ======
 +<code cpp>
 +    int isalnum(int chr);
 +</code>
 +check if a character Alphanumeric
 +
 +===== cpp Sourcecode Example =====
 +<code cpp>
 +#include <iostream> /* including standard library */
 +#include <string>
 +#include <cctype>
 +
 +using namespace std;
 +int main ()
 +{
 +  int i;
 +  string str="Test -!&%1";
 +  for (i=0; i <= 11;i++)
 +    {
 +     if ( isalnum(str[i]) != 0 )
 +      {
 +       cout << "Character " << i << " is alphanumeric" << endl;
 +      }
 +    }
 +  return 0;
 +}
 +</code>
 +==== output ====
 +    Character 0 is alphanumeric
 +    Character 1 is alphanumeric
 +    Character 2 is alphanumeric
 +    Character 3 is alphanumeric
 +    Character 9 is alphanumeric
  

on the occasion of the current invasion of Russia in Ukraine

Russian Stop this War
cpp/cctype/isalnum.txt · Last modified: 2024/02/16 01:04 (external edit)

Impressum Datenschutz