从char数组/ cstring中删除空格?

时间:2014-05-07 21:17:52

标签: c++ cstring character-arrays

我无法让我的程序删除在句子中找到的额外空格,比如在空格后面还有另一个空格。而我用来请求用户继续的while循环阻止了函数的运行。当我删除它时,程序的其余部分就会运行。

这是主要功能:

int main()
{
    bool program_start = 1;
    char user_sentence[MAX];

    cout<<"This program will take any sentence you write and correct any spacing\n"
        <<" or capitalization (not proper nouns) mistakes you have.\n";

    while(loop_continue(program_start))
    {
        input(user_sentence, MAX);
        uppercase_spacing(user_sentence);
        lowercase(user_sentence);
        cout<<user_sentence;
    }

    return 0;
}

我的问题在于我的uppercase_spacing函数,我无法删除句子中的额外空格。

以下是我用来编辑句子的空函数:

void uppercase_spacing(char sentence[])
{
    int number = 0;
    if(isspace(sentence[0]))
    {
        for(int i = 0; i < MAX; i++)
        {
            sentence[i] = sentence[i + 1];
        }

        while(number<MAX)
        {
            if((isspace(sentence[number])) && (isspace(sentence[number+1])))
            {
                sentence[number] = sentence[number + 1];
            }
            number++;
        }

    sentence[0] = toupper(sentence[0]);

    }else{

        for(int index = 0; index<MAX;index++)
        {
            if((isspace(sentence[index])) && (isspace(sentence[index+1])))
                sentence[index]=sentence[index+1];
        }

        sentence[0] = toupper(sentence[0]);

    }
    return;
}

void lowercase(char sentence[])
{
    for(int i = 1; (i < MAX) && (i != '\0'); i++)
    {
        sentence[i] = tolower(sentence[i]);
    }

    return;
}

我在所有其他程序中使用此布尔值,因此我认为该问题属于程序的主要部分。

这是我用于while循环的布尔函数:

bool loop_continue(bool another_round)
{
    bool again = another_round;
    char continue_loop = 'y';
    cout<<"Would you like to continue? Type y or Y for yes,\n" 
        >>" or any other letter for no.\n";
    cin>> continue_loop;
    if((continue_loop == 'y' )||(continue_loop == 'Y'))
    {
        cout<<"Okay, let's do this!"<<endl;
        again = 1;
    }else
    {
        cout<<"Goodbye."<<endl;
        again = 0;
    }
    return again;
}

输入;引号代表空间。:

  

Candy CCandy“”“”某事

输出;空间仍在那里:

  

Candy ccandy“”“”某事

5 个答案:

答案 0 :(得分:1)

首先,代码中存在许多一对一的错误。 (char sentence[MAX]中的最大索引为MAX-1,您可以使用index=MAX-1运行循环体并且访问sentence[index+1])。

其次,让我们深入了解你的功能......

for(int index = 0; index<MAX;index++)
{
    // if sentence[index] and sentence[index+1] are both spaces....
    if((isspace(sentence[index])) && (isspace(sentence[index+1])))
        // set sentence[index] to sentence[index+1] (??!)
        sentence[index]=sentence[index+1];

    // now proceed to the next character
}

你现在看到问题了吗?您将已知为空格(sentence[index])的角色设置为已知为空格(sentence[index+1])的角色。你实际上并没有删除任何空格。

答案 1 :(得分:1)

void compress_spaces( char *src)
{
    char *dst = src;

    // skip leading spaces first
    while( isspace( *src ))
        src ++;

    int space = 0;  // a character recently copied was a space

    for( ; *src; src++ )
        if( isspace( *src ))
        {
            if( !space )    // append a space only after a non-space char
                *dst++ = *src;
            space = 1;
        }
        else
        {
            *dst++ = *src;  // apped a non-space char always
            space = 0;
        }

    if( space )    // truncate the terminating space
        dst--;
    *dst = 0;      // terminate the resulting string
}

答案 2 :(得分:0)

没有发生任何事情的原因是因为当您在一行中找到两个空格时,您只是用另一个空格替换空格。你所做的任务并没有实际移动数组的其余部分,它只是将[数字]的值替换为[数字+ 1]的值:

if((isspace(sentence[number])) && (isspace(sentence[number+1])))
{
    sentence[number] = sentence[number + 1];
}

当你在这样的行中找到两个空格时,你需要输入一个内循环来找到第一个不是空格的字符,然后将该字符(以及所有后续字符)向下移动到了原来的空间。

答案 3 :(得分:0)

问题在于,当你在句子中找到一对空格时,你只需将一个空格复制到另一个空格而不删除任何空格,所以你仍然有一对空格。你想要的是在额外空间之后复制所有东西以摆脱空间。类似的东西:

void uppercase_spacing(char sentence[]) {
    char *in, *out;

    in = out = sentence;
    while (*in) {  /* while there's more sentence... */
        while(isspace(*in)) in++;  /* skip any initial spaces */
        while (*in && !isspace(*in))  /* copy non-spaces */
            *out++ = toupper(*in++);   /* convert to upper case */
        *out++ = *in;  /* copy a single space or the end of the string */
    }
    if (--out > sentence && isspace(*--out))
        *out = 0;  /* trim off trailing space, if any */
}

答案 4 :(得分:0)

你遇到的另一个问题是你正在转移MAX个字符,即使可能会有更少的字符。

例如,如果MAX为1500,我输入句子&#34; Help Me!&#34;,即9个字符(8个字母+ 1个nul终结符),您的程序将搜索1500个字符。

我建议您投资一些图书馆功能,例如:
std::strchr - 在C字符串中找到一个字符(例如空格) std::memmove - 将字符从一个位置复制到另一个位置,尤其是在位置重叠的情况下 std::strlen - 返回字符串中的字符数。