c语言字符串函数详解--函数名及源代码整理(国外英语资料)
c语言字符串函数详解--函数名及源代码整理(国外英语资料)
C语言字符串函数详解
Void * memset (void * DeST, int c, size _ t count).
将dest前面count个字符置为字符c.
返回dest的值.
Void * memmove (void * DeST, const void * SRC, size _ t count).
从src复制count字节的字符到dest. 如果src和dest出现重叠, 函数会自动处理.
返回dest的值.
Void * memcpy (void * DeST, const void * SRC, size _ t count).
从src复制count字节的字符到dest. 与memmove功能一样, 只是不能处理src和dest出现重叠.
返回dest的值.
Void * memchr (const void * buf, int c, size _ t count).
在buf前面count字节中查找首次出现字符c的位置. 找到了字符c或者已经搜寻了count个字节, 查找即停止.
操作成功则返回buf中首次出现c的位置指针, 否则返回null.
Void * _ memccpy (void * DeST, const void * SRC, int c, size _ t count).
从src复制0个或多个字节的字符到dest. 当字符c被复制或者count个字符被复制时, 复制停止.
如果字符c被复制, 函数返回这个字符后面紧挨一个字符位置的指针. 否则返回null.
Int memcmp (const void * buf1, const void * buf2, size _ t count).
比较buf1和buf2前面count个字节大小.
返回值 < 0, 表示buf1小于buf2;
返回值为0, 表示buf1等于buf2;
返回值 > 0, 表示buf1大于buf2.
Int memicmp (const void * buf1, const void * buf2, size _ t count).
比较buf1和buf2前面count个字节. 与memcmp不同的是, 它不区分大小写.
返回值同上.
Size _ t strlen (const char * string);
获取字符串长度, 字符串结束符null不计算在内.
没有返回值指示操作错误.
Char * strrev (char * string);
将字符串string中的字符顺序颠倒过来. Null结束符位置不变.
返回调整后的字符串的指针.
Char * _ strupr (char * string);
将string中所有小写字母替换成相应的大写字母, 其它字符保持不变.
返回调整后的字符串的指针.
Char * _ strlwr (char * string);
将string中所有大写字母替换成相应的小写字母, 其它字符保持不变.
返回调整后的字符串的指针.
Char * strchr (const char * string, int (c);
查找字符c在字符串string中首次出现的位置, null结束符也包含在查找中.
返回一个指针, 指向字符c在字符串string中首次出现的位置, 如果没有找到, 则返回null.
Char * strrchr (const char * string, int (c);
查找字符c在字符串string中最后一次出现的位置, 也就是对string进行反序搜索, 包含null结束符.
返回一个指针, 指向字符c在字符串string中最后一次出现的位置, 如果没有找到, 则返回null.
Char * strstr (const char * string, const char * strsearch);
在字符串string中查找strsearch子串.
返回子串strsearch在string中首次出现位置的指针. 如果没有找到子串strsearch, 则返回null. 如果子串strsearch为空串, 函数返回string值.
Char * strdup (const char * strsource);
函数运行中会自己调用malloc函数为复制strsource字符串分配存储空间, 然后再将strsource复制到分配到的空间中. 注意要及时释放这个分配的空间.
返回一个指针,
Points to the space allocated for the replicated string; returns the NULL value if the allocation space fa