我有一个字符串:“这是一个简单的字符串”
我的目标是找到(用strstr
)“简单”并将其替换为“样本”。
代码:
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
int main (int argc, char *argv[]){
char *str;
char *pch;
int i=0;
if((str=malloc(BUFSIZ))==NULL){
printf("\n\t MEMORY ERROR");
exit(1);
}
if((pch=malloc(BUFSIZ))==NULL){
printf("\n\t MEMORY ERROR");
exit(1);
}
str="This is a simple string ";
pch=str;
while(str[i]!='\0'){
printf("%c",str[i]);
i++;
}
printf(" -1break\n");
while((*pch!='\0')){
printf("%c",*pch);
pch++;
}
printf(" -2break\n");
printf("%s %d %d %d %d\n",str,strlen(str),sizeof(*str),BUFSIZ,(BUFSIZ-strlen(str)));/*OK*/
if((pch=strstr(str,"simple"))!=NULL){
printf("%s \n",pch); **/*OK*/**
while((*pch!='\0')){
printf("%c",*pch);
pch++;
} **/*SEG FAULT*/**
strncpy(pch,"sample",6);
printf("OK\n");
}
printf("%s %d\n",str,strlen(str));
printf("\n");
return 0;
}
输出:
$ ./strstr
This is a simple string -1break
This is a simple string -2break
This is a simple string 24 1 8192 8168
simple string
Segmentation fault
$
问题:
不能用“样本”代替“简单”。
问题:
如果pch
正确指向“简单”的“s”,为什么不能strncpy
替换“样本”的 6 个字母?