参考文章:http://blog.csdn.net/ghevinn/article/details/9834119 关于中文字符编码问题,这篇文章里面讲的很详细-->http://www.tuicool.com/articles/yIjiqm UTF-8编码是用以解决国际上字符的一种多字节编码,是在 Read More
posted @ 2016-06-22 22:04 你好阿汤哥 Views(3426) Comments(0) Diggs(0) Edit
1 //字符串拷贝,排除指定字符 2 char *strcpy_exclude_char(char *dst, const int dst_len, const char *src, const char *exclude_list) 3 { 4 int i = 0, j = 0, flag = 0; 5 const char *p = NULL; 6 if ... Read More
posted @ 2016-06-22 15:40 你好阿汤哥 Views(400) Comments(0) Diggs(0) Edit