function template
<locale>

std::isalnum

template <class charT>  bool isalnum (charT c, const locale& loc);
使用 locale 检查字符是否为字母数字
使用 locale locctype 类别检查 c 是否为字母数字字符,返回值与调用 ctype::is 相同,如下所示:

1
use_facet < ctype<charT> > (loc).is (ctype_base::alnum, c)

此函数模板重载了 C 函数 isalnum(定义在 <cctype> 中)。

参数

c
要检查的字符。
loc
要使用的 locale。它必须具有 ctype 方面。

模板参数 charT 是字符类型。

返回值

如果 c 确实是字母数字字符,则为 true
否则返回 false

示例

1
2
3
4
5
6
7
8
9
10
11
12
13
14
// isalnum example (C++)
#include <iostream>       // std::cout
#include <string>         // std::string
#include <locale>         // std::locale, std::isalnum

int main ()
{
  std::locale loc;
  std::string str = "c3po...";
  std::string::size_type i=0;
  while ( (i<str.length()) && (std::isalnum(str[i])) ) {++i;}
  std::cout << "The first " << i << " characters are alphanumeric.\n";
  return 0;
}

输出

The first 4 characters are alphanumeric.


数据竞争

将访问 loc 及其 ctype 方面。

异常安全

强保证:如果抛出异常,则没有效果。

另见