Namespaces
Variants
Views
Actions

Difference between revisions of "cpp/string/byte/isalnum"

From cppreference.com
< cpp‎ | string‎ | byte
(See also: reorder)
m ({{c/core}})
 
(17 intermediate revisions by 7 users not shown)
Line 1: Line 1:
 
{{cpp/title|isalnum}}
 
{{cpp/title|isalnum}}
{{cpp/string/byte/sidebar}}
+
{{cpp/string/byte/navbar}}
{{ddcl | header=cctype |
+
{{ddcl|header=cctype|
 
int isalnum( int ch );
 
int isalnum( int ch );
 
}}
 
}}
  
Checks if the given character is an alphanumeric character according to the current C locale, i.e. either a number ({{tt|0123456789}} in the default locale), an uppercase letter ({{tt|ABCDEFGHIJKLMNOPQRSTUVWXYZ}} in the default locale), or a lowercase letter ({{tt|abcdefghijklmnopqrstuvwxyz}} in the default locale).
+
Checks if the given character is an alphanumeric character as classified by the current C locale. In the default locale, the following characters are alphanumeric:
 +
 
 +
* digits ({{tt|0123456789}})
 +
* uppercase letters ({{tt|ABCDEFGHIJKLMNOPQRSTUVWXYZ}})
 +
* lowercase letters ({{tt|abcdefghijklmnopqrstuvwxyz}})
 +
 
 +
The behavior is undefined if the value of {{c|ch}} is not representable as {{c/core|unsigned char}} and is not equal to {{c|EOF}}.
  
 
===Parameters===
 
===Parameters===
{{param list begin}}
+
{{par begin}}
{{param list item | ch | character}}
+
{{par|ch|character to classify}}
{{param list end}}
+
{{par end}}
  
 
===Return value===
 
===Return value===
 +
Non-zero value if the character is an alphanumeric character, {{tt|0}} otherwise.
  
non-zero value ({{c|true}}) if the character is an alphanumeric character, {{tt|0}} ({{c|false}}) otherwise.
+
===Notes===
 +
{{cpp/string/byte/note unsigned char}}
  
 
===Example===
 
===Example===
 
{{example
 
{{example
| Demonstrates the use of isalnum() with different locales (OS-specific).
+
|Demonstrates the use of {{tt|std::isalnum}} with different locales (OS-specific).
| code=
+
|code=
#include <iostream>
+
 
#include <cctype>
 
#include <cctype>
 
#include <clocale>
 
#include <clocale>
 +
#include <iostream>
  
 
int main()
 
int main()
 
{
 
{
     const char c = '\xdf'; // German letter ß in ISO-8859-1
+
     unsigned char c = '\xdf'; // German letter ß in ISO-8859-1
  
 
     std::cout << "isalnum(\'\\xdf\', default C locale) returned "
 
     std::cout << "isalnum(\'\\xdf\', default C locale) returned "
              << std::boolalpha << (bool)std::isalnum(c) << '\n';
+
              << std::boolalpha << static_cast<bool>(std::isalnum(c)) << '\n';
  
     std::setlocale(LC_ALL, "de_DE.iso88591");
+
     if (std::setlocale(LC_ALL, "de_DE.iso88591"))
    std::cout << "isalnum(\'\\xdf\', ISO-8859-1 locale) returned "
+
        std::cout << "isalnum(\'\\xdf\', ISO-8859-1 locale) returned "
              << std::boolalpha << (bool)std::isalnum(c) << '\n';
+
                  << static_cast<bool>(std::isalnum(c)) << '\n';
  
 
}
 
}
| output=
+
|p=true
 +
|output=
 
isalnum('\xdf', default C locale) returned false
 
isalnum('\xdf', default C locale) returned false
 
isalnum('\xdf', ISO-8859-1 locale) returned true
 
isalnum('\xdf', ISO-8859-1 locale) returned true
Line 42: Line 51:
  
 
===See also===
 
===See also===
{{dcl list begin}}
+
{{dsc begin}}
{{dcl list template | cpp/locale/dcl list isalnum}}
+
{{dsc inc|cpp/locale/dsc isalnum}}
{{dcl list template | cpp/string/wide/dcl list iswalnum}}
+
{{dsc inc|cpp/string/wide/dsc iswalnum}}
{{dcl list end}}
+
{{dsc see c|c/string/byte/isalnum}}
 +
{{dsc end}}
 
{{cpp/string/character classes}}
 
{{cpp/string/character classes}}
  
 +
[[de:cpp/string/byte/isalnum]]
 +
[[es:cpp/string/byte/isalnum]]
 
[[fr:cpp/string/byte/isalnum]]
 
[[fr:cpp/string/byte/isalnum]]
 +
[[it:cpp/string/byte/isalnum]]
 
[[ja:cpp/string/byte/isalnum]]
 
[[ja:cpp/string/byte/isalnum]]
 +
[[pt:cpp/string/byte/isalnum]]
 +
[[ru:cpp/string/byte/isalnum]]
 
[[zh:cpp/string/byte/isalnum]]
 
[[zh:cpp/string/byte/isalnum]]

Latest revision as of 23:17, 27 June 2024

Defined in header <cctype>
int isalnum( int ch );

Checks if the given character is an alphanumeric character as classified by the current C locale. In the default locale, the following characters are alphanumeric:

  • digits (0123456789)
  • uppercase letters (ABCDEFGHIJKLMNOPQRSTUVWXYZ)
  • lowercase letters (abcdefghijklmnopqrstuvwxyz)

The behavior is undefined if the value of ch is not representable as unsigned char and is not equal to EOF.

Contents

[edit] Parameters

ch - character to classify

[edit] Return value

Non-zero value if the character is an alphanumeric character, 0 otherwise.

[edit] Notes

Like all other functions from <cctype>, the behavior of std::isalnum is undefined if the argument's value is neither representable as unsigned char nor equal to EOF. To use these functions safely with plain chars (or signed chars), the argument should first be converted to unsigned char:

bool my_isalnum(char ch)
{
    return std::isalnum(static_cast<unsigned char>(ch));
}

Similarly, they should not be directly used with standard algorithms when the iterator's value type is char or signed char. Instead, convert the value to unsigned char first:

int count_alnums(const std::string& s)
{
    return std::count_if(s.begin(), s.end(),
                      // static_cast<int(*)(int)>(std::isalnum)         // wrong
                      // [](int c){ return std::isalnum(c); }           // wrong
                      // [](char c){ return std::isalnum(c); }          // wrong
                         [](unsigned char c){ return std::isalnum(c); } // correct
                        );
}

[edit] Example

Demonstrates the use of std::isalnum with different locales (OS-specific).

#include <cctype>
#include <clocale>
#include <iostream>
 
int main()
{
    unsigned char c = '\xdf'; // German letter ß in ISO-8859-1
 
    std::cout << "isalnum(\'\\xdf\', default C locale) returned "
              << std::boolalpha << static_cast<bool>(std::isalnum(c)) << '\n';
 
    if (std::setlocale(LC_ALL, "de_DE.iso88591"))
        std::cout << "isalnum(\'\\xdf\', ISO-8859-1 locale) returned "
                  << static_cast<bool>(std::isalnum(c)) << '\n';
 
}

Possible output:

isalnum('\xdf', default C locale) returned false
isalnum('\xdf', ISO-8859-1 locale) returned true

[edit] See also

checks if a character is classified as alphanumeric by a locale
(function template) [edit]
checks if a wide character is alphanumeric
(function) [edit]
C documentation for isalnum
ASCII values characters

iscntrl
iswcntrl

isprint
iswprint

isspace
iswspace

isblank
iswblank

isgraph
iswgraph

ispunct
iswpunct

isalnum
iswalnum

isalpha
iswalpha

isupper
iswupper

islower
iswlower

isdigit
iswdigit

isxdigit
iswxdigit

decimal hexadecimal octal
0–8 \x0\x8 \0\10 control codes (NUL, etc.) ≠0 0 0 0 0 0 0 0 0 0 0 0
9 \x9 \11 tab (\t) ≠0 0 ≠0 ≠0 0 0 0 0 0 0 0 0
10–13 \xA\xD \12\15 whitespaces (\n, \v, \f, \r) ≠0 0 ≠0 0 0 0 0 0 0 0 0 0
14–31 \xE\x1F \16\37 control codes ≠0 0 0 0 0 0 0 0 0 0 0 0
32 \x20 \40 space 0 ≠0 ≠0 ≠0 0 0 0 0 0 0 0 0
33–47 \x21\x2F \41\57 !"#$%&'()*+,-./ 0 ≠0 0 0 ≠0 ≠0 0 0 0 0 0 0
48–57 \x30\x39 \60\71 0123456789 0 ≠0 0 0 ≠0 0 ≠0 0 0 0 ≠0 ≠0
58–64 \x3A\x40 \72\100 :;<=>?@ 0 ≠0 0 0 ≠0 ≠0 0 0 0 0 0 0
65–70 \x41\x46 \101\106 ABCDEF 0 ≠0 0 0 ≠0 0 ≠0 ≠0 ≠0 0 0 ≠0
71–90 \x47\x5A \107\132 GHIJKLMNOP
QRSTUVWXYZ
0 ≠0 0 0 ≠0 0 ≠0 ≠0 ≠0 0 0 0
91–96 \x5B\x60 \133\140 [\]^_` 0 ≠0 0 0 ≠0 ≠0 0 0 0 0 0 0
97–102 \x61\x66 \141\146 abcdef 0 ≠0 0 0 ≠0 0 ≠0 ≠0 0 ≠0 0 ≠0
103–122 \x67\x7A \147\172 ghijklmnop
qrstuvwxyz
0 ≠0 0 0 ≠0 0 ≠0 ≠0 0 ≠0 0 0
123–126 \x7B\x7E \172\176 {|}~ 0 ≠0 0 0 ≠0 ≠0 0 0 0 0 0 0
127 \x7F \177 backspace character (DEL) ≠0 0 0 0 0 0 0 0 0 0 0 0