C++标准库string类型的操作总结
2010-12-04 07:18:05 来源:WEB开发网核心提示:6.cctype提供的字符判断函数:需要包含头文件: #include<cctype>Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--> 1isalnum(c);
6.cctype提供的字符判断函数:
需要包含头文件: #include<cctype>
1 isalnum(c); //true if c 是数字或字母
2 isalpha(c); //true if c 是字母
3 iscntrl(c); //true if c 是控制字符
4 isdigit(c); //true if c 是数字
5 isgraph(c); //true if c 不是空格但可打印
6 islower(c); //true if c 是标点符号
7 isprint(c); //true if c 是空白字符
8 ispunct(c); //true if c 是大写字母
9 isspace(c); //true if c 是空白字符
10 isupper(c); //true if c 是大写字符
11 isxdigit(c); //true if c 是十六进制数
12 tolower(c); //将c转换为小写
13 toupper(c); //将c转换为大写
更多精彩
赞助商链接