在C语言中,我们通常使用字符串处理函数来查找和替换字符串中的内容。以下是一些常用的技巧:
#include <stdio.h>
#include <string.h>
int main() {
char str[] = "Hello, World!";
char sub[] = "World";
char *ptr = strstr(str, sub);
if(ptr != NULL) {
printf("'%s' found at position %ld\n", sub, ptr - str);
} else {
printf("'%s' not found\n", sub);
}
return 0;
}
#include <stdio.h>
#include <string.h>
int main() {
char str[] = "Hello, World!";
char ch = 'W';
char *ptr = strchr(str, ch);
if(ptr != NULL) {
printf("'%c' found at position %ld\n", ch, ptr - str);
} else {
printf("'%c' not found\n", ch);
}
return 0;
}
#include <stdio.h>
#include <string.h>
int main() {
char str[] = "Hello, World!";
char new_str[] = "Goodbye";
strncpy(str, new_str, strlen(new_str));
printf("New string: %s\n", str);
return 0;
}
这些是一些基本的技巧,根据具体的需求和场景,可以使用不同的字符串处理函数来实现查找和替换操作。