我正在尝试编写一个REPLACE
将字符串替换为given
字符串的函数required
。当我在纸上干运行该功能时,一切似乎都很好,但在执行时,它没有给出正确的输出。代码如下:-
string REPLACE(string src,string reqd,string given)
{
int i,j,k;
int pos = FIND(src,given);
if(pos==-1)
return "";
else
{
char *arr = new char[src.length()+reqd.length()-given.length()]; // creating the array that will hold the modified string
for(i=0;i<pos;i++)
arr[i] = src[i]; // copying the initial part of the string
for(i=pos,j=0;i<pos+reqd.length()+1&&j<reqd.length();i++,j++)
arr[i] = reqd[j]; // copying the required string into array
for(i=pos+reqd.length()+1,k=0;i<sizeof(arr);i++,k++)
arr[i] = src[pos+given.length()+k]; // copying the remaining part of source string into the array
return arr;
}
}
这里FIND
也是我写的,已经在很多情况下测试过了。我没有看到任何错误FIND
。