我有以下代码:

int main()
{
    string  adr="bonjour000000";
    int j=adr.length();
    cout<<adr<<"\nLa longueur de ma chaine est "<<j<<".";
    cout<<"\n";

    if(adr.length()>=7){
        //if(how to test if the characters after the 7th character are =0)
        //here begin the 2nd if loop

        for(unsigned int i=0; i<adr.length(); i++)
        {
            cout<<adr[i];
        }

        adr.erase (adr.begin()+7,adr.end());
        cout<<"\n"<<adr;

        //here ends the 2nd if loop
    }

    else{
        cout<<"Error: there is less than 7 characters";
        cout<<"\n"<<adr;
    }
}


我想先测试adr是否具有7个或7个以上的字符,然后我要检查第7个字符之后的所有字符是否全部为0。在这种情况下,我想将所有这些0剪切,何时剪切?不,请保持原样。
在我的示例中,我期望以下输出:

bonjour000000
La longueur de ma chaine est 13
bonjour000000
bonjour


谢谢你的帮助。

最佳答案

您可以使用std::string::find_first_not_of检查不是“ 0”的第一个字符。如果在字符串范围内没有这样的字符,则所有字符均为0。您将在以char#7开始的子字符串上调用此字符。您可以使用起始位置以及@Luchian Grigore显示的名称进行调用

09-16 16:39