判断字符中是否包含汉字
Posted onecrazystone
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了判断字符中是否包含汉字相关的知识,希望对你有一定的参考价值。
下面是用C写的一个判断汉字的程序:
#include<stdio.h>
int main(void)
{
int i;
//mr:: str[80]的类型不能写成 char,必须加上 unsigned
unsigned char str[80];
puts("input string:");
scanf("%s",str);
for(i=0;i<80&&str[i]!=‘ ‘;)
{
if(str[i]>=0xb0&&str[i]<=0xf7&&str[i+1]>=0xa1&&str[i+1]<=0xfe)
{
printf("chinese character
");
i+=2;
}
else
{
printf("other character
");
i++;
}
}
return 0;
}
以上是关于判断字符中是否包含汉字的主要内容,如果未能解决你的问题,请参考以下文章