- strcpy: 将一个字符串复制到另一个字符串中
c
char source[] = "Hello";
char destination[10];
strcpy(destination, source);
- strcat: 将一个字符串连接到另一个字符串的末尾
c
char str1[20] = "Hello";
char str2[] = "World";
strcat(str1, str2);
- strlen: 返回字符串的长度
c
char str[] = "Hello";
int length = strlen(str);
- strcmp: 比较两个字符串
c
char str1[] = "Hello";
char str2[] = "Hello";
int result = strcmp(str1, str2);
- strchr: 在字符串中查找特定字符
c
char str[] = "Hello";
char *ptr = strchr(str, 'e');
if (ptr != NULL) {
printf("Character 'e' found at position: %d\n", ptr - str);
}
这些都是C语言中常用的字符串函数的例子,它们可以帮助处理和操作字符串。