头文件
C语言使用<ctype.h>
原型
int isalpha( int ch )
说明
判断字符ch是否为英文字母,若为英文字母,返回非0(小写字母为2,大写字母为1)。若不是字母,返回0。在标准c中相当于使用“ isupper( ch ) || islower( ch ) ”做测试。
C语言使用<ctype.h>
int isalpha( int ch )
判断字符ch是否为英文字母,若为英文字母,返回非0(小写字母为2,大写字母为1)。若不是字母,返回0。在标准c中相当于使用“ isupper( ch ) || islower( ch ) ”做测试。
本文标题:C语言 字符串 处理函数 isalpha()
本文链接:https://www.haomeiwen.com/subject/ocispqtx.html
网友评论