Menu
×
   ❮   
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

C string (string.h) 库


C 字符串函数

The <string.h> 库包含许多函数,可以让你对字符串执行任务。

以下表格列出了所有字符串函数

函数 描述
memchr() 返回指向内存块中第一个出现的值的指针
memcmp() 比较两个内存块,以确定哪个代表更大的数值
memcpy() 将数据从一个内存块复制到另一个内存块
memmove() 将数据从一个内存块复制到另一个内存块,并考虑内存块可能重叠的情况
memset() 将内存块中的所有字节设置为相同的值
strcat() 将一个字符串追加到另一个字符串的末尾
strchr() 返回指向字符串中第一个出现的字符的指针
strcmp() 比较两个字符串中字符的 ASCII 值,以确定哪个字符串的值更高
strcoll() 比较两个字符串中字符的区域设置值,以确定哪个字符串的值更高
strcpy() 将字符串的字符复制到另一个字符串的内存中
strcspn() 返回字符串的长度,直到第一个出现的指定字符
strerror() 返回描述错误代码含义的字符串
strlen() 返回字符串的长度
strncat() 将字符串中的若干字符追加到另一个字符串的末尾
strncmp() 比较两个字符串中指定数量的字符的 ASCII 值,以确定哪个字符串的值更高
strncpy() 将字符串中的若干字符复制到另一个字符串的内存中
strpbrk() 返回指向字符串中第一个包含指定字符的位置的指针
strrchr() 返回指向字符串中最后一个出现的字符的指针
strspn() 返回字符串的长度,直到第一个不是指定字符的字符
strstr() 返回指向另一个字符串中第一个出现的字符串的指针
strtok() 使用分隔符将字符串拆分成多个片段
strxfrm() 将字符串中的字符从 ASCII 编码转换为当前区域设置的编码

相关页面

C 字符串教程



×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.