c++函数判断一个字符串是否全为中文
时间: 2023-11-21 22:11:11 浏览: 127
可以使用以下代码实现:
```c
#include <stdio.h>
#include <stdbool.h>
#include <string.h>
#include <locale.h>
bool is_all_chinese(const char* str) {
// 设置本地化环境
setlocale(LC_ALL, "");
// 遍历字符串
for (int i = 0; i < strlen(str); i++) {
if (!iswchinese(str[i])) {
return false;
}
}
return true;
}
int main() {
const char* str1 = "你好,世界!"; // 全为中文
const char* str2 = "Hello, world!"; // 不全为中文
if (is_all_chinese(str1)) {
printf("%s is all Chinese.\n", str1);
} else {
printf("%s is not all Chinese.\n", str1);
}
if (is_all_chinese(str2)) {
printf("%s is all Chinese.\n", str2);
} else {
printf("%s is not all Chinese.\n", str2);
}
return 0;
}
```
在上面的代码中,使用了 `iswchinese()` 函数来判断字符是否为中文字符。需要注意的是,需要先设置本地化环境为 `""`,这样才能正确识别中文字符。
阅读全文