c++中如何只去掉字符串尾部的空格而不去掉其他空格?

2025-04-05 07:35:57
推荐回答(2个)
回答1:

    char szText[256] = "sdfsf     ";
    int nLen = 0;// 字符串长度
    for (; szText[nLen]; nLen++);// 计算字符串长度
    for (nLen--; nLen; nLen--)
    {
        if (szText[nLen] != ' ')
        {
            szText[nLen + 1] = '\0';
            break;
        }
    }

回答2:

char a[] = "A B C D    ";
int i;
for(i=strlen(a)-1; i>=0; i++)
    if (a[i])!=' '
        break;
end
a[i+1] = '\0';