为什么不在分隔符处停止?

时间:2017-05-25 06:43:50

标签: c++ delimiter substr

我是C ++的新手,所以如果它是愚蠢的,请不要苛刻。

我正在尝试将字符串分成两部分。我能够正确地使用substr分离第一部分,但出于某种原因,当我尝试分离第二部分时,它也会在分隔符之后获取所有内容。我查看它是否识别出我试图阻止它的位置(pos1)并且它是正确的位置,但它仍然需要一切事后。

for(u_int i = 0; i < eachPerson.size(); i++)
{
    string temp, first, last;
    u_int pos, pos1;
    temp = eachPerson[i];
    pos = temp.find_first_of(' ');
    pos1 = temp.find_first_of(':');
    cout << pos1 << endl;
    first = temp.substr(0, pos);
    last = temp.substr(pos+1, pos1);
    cout << "First: " << first << endl
         << "Last: " << last << endl;
}

输出:

John Doe: 20 30 40 <- How each line looks before it's separated
Jane Doe: 60 70 80
8 <- Location of delimiter
First: John <- first
Last: Doe: 20 <- last
8
First: Jane
Last: Doe: 60 

1 个答案:

答案 0 :(得分:6)

substr的第二个参数是字符数,而不是最终索引。您需要将第二个呼叫更改为:

last = temp.substr(pos+1, pos1-pos-1);

顺便说一句,严格来说,在第一次调用substr时,你实际上想要取pos-1个字符,除非你想要结果字符串中的空格。