把字符串中的每一個空格替換爲「%20」

把字符串中的每一個空格替換爲「%20」舉個栗子:
We are happy-->輸出"We%20are%20happy"ios

#include <iostream>
using namespace std;
#include <cstddef>

//length是字符數組str的總容量
void ReplaceBlank(char *str, int length)
{
    if (str == nullptr&&length <= 0)
    {
        return;
    }
    int count = 0;
    int i = 0;
    int oldLength = 0;//str數組中原有長度
    while (str[i] != '\0')
    {
        if (str[i++] == ' ')
            ++count;
        ++oldLength;
    }
    int newLength = oldLength + count * 2;//加完全部%20以後的長度
    int index1 = newLength;
    int index2 = oldLength;
    if (newLength>length)
        return;
    while (index1 >= 0 && index2<index1)
    {
        if (str[index2] == ' ')
        {
            str[index1--] = '0';
            str[index1--] = '2';
            str[index1--] = '%';
            --index2;
        }
        else
        {
            str[index1--] = str[index2--];
        }
    }
}

int main()
{
    char str[] = "";
    cin.getline(str,100);//按行輸入
    ReplaceBlank(str, 100);//100
    int i = 0;
    while (str[i] != '\0')
    {
        cout << str[i];
        i++;
    }
    return 0;
}

注意:cin.getline(str,100);數組

  1. 第一個參數是字符指針
  2. 第二個參數是輸入數組最大長度(’\0’會佔據最後一位)

3.第三個參數是結束字符(不寫默認回車),結束符不會被輸入到數組中app

數組名的值是個指針常量,也就是數組第一個元素的地址。a[300]是一個數組,a是一個指向a[0]
的指針,a+5 是一個指向a[4]的指針ide

cin.getline()坑點spa

1.輸入超過本身給getline()第二個參數設置的長度,整個程序的輸入就終止了
2.cin.getline()讀到第二個參數的長度或第三個參數符或者回車時結束輸入,丟棄結束符。
好比cin.getlin(a,5,’-’);遇到‘-’結束輸入,‘-’和‘\0’會被算進第二個參數5的個數裏面,但‘-’最終會被丟出字符串,(就像‘-’憑空消失了同樣,a中不會有,下一次的cin>>也不會讀入他,就像cin.getline(a,5);遇到回車默認結束時,回車被丟出字符串同樣);指針

相關文章
相關標籤/搜索