我在寫一個簡單的程序,其中所有'空格'將被'%20'替換。getline C++的奇怪行爲
#include <iostream>
#include <string>
using namespace std;
int main (int argc, char* argv[]){
string input;
cout << "please enter the string where spaces will be replaced by '%20'" << endl;
getline(cin, input);
//count the number of spaces
int countSpaces = 0;
for (int i = 0 ; i < input.length() ; i++){
if (input[i] == ' '){
countSpaces++;
}
}
int size = input.length() + (2 * countSpaces) + 1;
//char cstr1[size];
char *cstr1 = new char[size];
char *cstr = cstr1;
for (int i = 0 ; i < input.length() ; i++){
if(input[i] == ' '){
*cstr++ = '%';
*cstr++ = '2';
*cstr++ = '0';
}
else{
*cstr++ = input[i];
}
}
*cstr == '\0';
cout << cstr1 << endl;
delete[] cstr1;
return 0;
}
我得到以下奇怪的現象:
隨着測試輸入
"this is strange "
我得到"this%20is%20strange%20%20his is"
,在這裏我只是希望"this%20is%20strange%20%20"
如果我硬編碼相同的字符串,我得到正確的結果。
更換
char *cstr1 = new char[size];
與char cstr1[size];
&除去delete[]
同時仍經由getline
擷取輸入還去除該錯誤。
我使用的i686-蘋果darwin10-G ++ - 4.2.1:
任何幫助深表感謝。
您是否嘗試單步調試調試器中的代碼以查看第二個循環中實際發生了什麼? –