摘要: #include <stdio.h> #include <string.h> // 判断一个字节是否为汉字的一部分 int is_gbk_char(unsigned char c) { return (c & 0x80) && (c >= 0xA1 && c <= 0xF7); } // 读取GBK 阅读全文
posted @ 2024-07-18 11:26 飞雪飘鸿 阅读(1) 评论(0) 推荐(0) 编辑
https://damo.alibaba.com/ https://tianchi.aliyun.com/course?spm=5176.21206777.J_3941670930.5.87dc17c9BZNvLL