我在这里尝试完成的是获取一个 cString 并将某个字符替换为另一个我通过使用 strchr() 函数找到的位置。
我想不通的是如何替换字符我所有的尝试(下面注释掉)都产生未经编辑的字符串或使程序崩溃。我相信我正在朝着正确的方向替换字符(取 char *c 的起始地址并添加 n(我要替换的字符向前的字节数),然后写入该新地址。),但是我似乎无法让它正常运行。
任何帮助表示赞赏。
int main()
{
char *c, *sch;
int n;
c = "this is a test\n";
sch = strchr(c, 'a');
if(sch != NULL)
{
n = sch-c+1;
printf("%d\n", (int)sch);
printf("%d\n\n", (int)c);
printf("'a' found at: %d", n);
}
/////////////////////
//sch = &c;
//*(sch + n) = 'z';
/////////////////////
//*(c + n) = 'z';
/////////////////////
//c[n] = 'z';
/////////////////////
printf("\n\n%s", c);
getchar();
return 0;
}