字符串函数及宏(二)

标志字符串函数tokenize_string():为每个字符串返回一个惟一的标志

      例如:   int   city_token = tokenize_string("shenzhen");

确认字符是否为ASCII字符宏toascii,该宏定义于头文件ctype.h,例如:

     #include <ctype.h>

     int toascii(int  character);

将字符从小写转换成大写宏:_toupper,也定义于头文件ctype.h中,也可以使用实时库函数toupper,例如:

      int    _toupper(int   character);   //不判断正在转换的字符是否为小写,宏对非小写字符转换会出错,速度较快

      int    toupper(int   character);     //只对小写字符进行转换

判断字符是否为十六进制宏:isxdigit:

     例如:isxdigit(character)

判断字符是否包含空白符:isspace:

    例如:isspace(character)

判断字符是否为标点符号:ispunct:

     例如:ispunct(character)

判断字符是大写还是小写:islower / isupper

判断字符是否为数字:isdigit

判断字符是否为控制符:iscntrl

判断字符是否包含ASCII值:isascii

判断字符是否为字母:isalpha

判断字符是否为数字或字母:isalnum

你可能感兴趣的:(字符串函数及宏(二))